Skip to content

Commit

Permalink
fix: add use client directives on the last files using useContext (#73)
Browse files Browse the repository at this point in the history
  • Loading branch information
seanes authored Nov 21, 2024
1 parent 43f6bdc commit 29a0267
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions lib/components/ContextMenu/ContextMenu.tsx
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
'use client';
import type { DropdownPlacement, MenuItemProps } from '../';
import { type MenuItemGroups, MenuItems } from '../';
import { useRootContext } from '../RootProvider';
Expand Down
1 change: 1 addition & 0 deletions lib/components/Layout/Layout.tsx
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
'use client';
import type { ReactNode } from 'react';
import { LayoutBase, LayoutBody, LayoutContent, LayoutSidebar, type LayoutTheme } from '.';
import { Footer, type FooterProps } from '../Footer';
Expand Down

0 comments on commit 29a0267

Please sign in to comment.