Skip to content

Commit

Permalink
support right menu
Browse files Browse the repository at this point in the history
  • Loading branch information
anc95 committed Mar 19, 2023
1 parent ebbf13e commit d92522b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/content/container/ask-writely/content/quick-prompt.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ export const QuickPrompt: React.FC<{

return (
<div>
{items.map((item) => (
<Card {...item} onClick={onClick} />
{items.map((item, index) => (
<Card {...item} key={index} onClick={onClick} />
))}
</div>
);
Expand Down

0 comments on commit d92522b

Please sign in to comment.