Skip to content
This repository has been archived by the owner on Dec 12, 2024. It is now read-only.

Commit

Permalink
fix duplicate keys
Browse files Browse the repository at this point in the history
  • Loading branch information
evermake committed Nov 30, 2024
1 parent 005b513 commit a17a16a
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions frontend/src/components/mahjong/Mahjong.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -166,8 +166,8 @@ export function Mahjong({ level }: { level: LevelInfo }) {
className="fixed top-0 w-full px-16"
platesLeading={[
{
id: 'title',
items: [{ icon: <span className="iconify ph--sign-out rotate-180" /> }],
id: 'exit',
items: [{ icon: <span className="iconify rotate-180 ph--sign-out" /> }],
clickable: true,
onClick: () => {
alert('not yet :)')
Expand All @@ -189,7 +189,7 @@ export function Mahjong({ level }: { level: LevelInfo }) {
onClick: handleUndo,
},
{
id: 'undo',
id: 'shuffle',
items: [{ icon: <span className="iconify ph--shuffle" /> }],
clickable: true,
onClick: () => {
Expand All @@ -199,7 +199,7 @@ export function Mahjong({ level }: { level: LevelInfo }) {
]}
platesTrailing={[
{
id: 'title',
id: 'info',
items: [{ icon: <span className="iconify ph--info" /> }],
clickable: true,
onClick: () => {
Expand Down

0 comments on commit a17a16a

Please sign in to comment.