Skip to content

Commit

Permalink
fix: build error
Browse files Browse the repository at this point in the history
  • Loading branch information
Saelmala committed Sep 17, 2024
1 parent 15f2787 commit bb9a855
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions src/components/inventory/InventoryHeaderContent.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,15 +17,12 @@ export const InventoryHeaderContent = () => {
<h1 className="m-2 text-4xl text-p text-center">
{t('inventory')}
</h1>
<LockButton
isLocked={isLocked}
onClick={() => setIsLocked(!isLocked)}
/>
<LockButton />
</div>
</div>
</HeaderNavigation>
<Suspense>
<Inventory isLocked={isLocked} />
<Inventory locked={isLocked} />
</Suspense>
</>
);
Expand Down

0 comments on commit bb9a855

Please sign in to comment.