Skip to content

Commit 1463d8e

Browse files
committed
fix: fix error with converting components in edit
1 parent a8f076a commit 1463d8e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

interactions/client/context.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -255,7 +255,7 @@ async def edit(
255255

256256
if self.message.components is not None or components is not MISSING:
257257
if components is MISSING:
258-
_components = self.message.components
258+
_components = _build_components(components=self.message.components)
259259
elif not components:
260260
_components = []
261261
else:

0 commit comments

Comments
 (0)