mirror of
https://github.com/MODSetter/SurfSense.git
synced 2026-06-22 21:28:12 +02:00
Fix MobileSidebar missing onUserSettings prop
This commit is contained in:
parent
3dff7487b1
commit
dc79fd97b0
1 changed files with 3 additions and 0 deletions
|
|
@ -41,6 +41,7 @@ interface MobileSidebarProps {
|
||||||
onSettings?: () => void;
|
onSettings?: () => void;
|
||||||
onManageMembers?: () => void;
|
onManageMembers?: () => void;
|
||||||
onSeeAllSearchSpaces?: () => void;
|
onSeeAllSearchSpaces?: () => void;
|
||||||
|
onUserSettings?: () => void;
|
||||||
onLogout?: () => void;
|
onLogout?: () => void;
|
||||||
pageUsage?: PageUsage;
|
pageUsage?: PageUsage;
|
||||||
}
|
}
|
||||||
|
|
@ -80,6 +81,7 @@ export function MobileSidebar({
|
||||||
onSettings,
|
onSettings,
|
||||||
onManageMembers,
|
onManageMembers,
|
||||||
onSeeAllSearchSpaces,
|
onSeeAllSearchSpaces,
|
||||||
|
onUserSettings,
|
||||||
onLogout,
|
onLogout,
|
||||||
pageUsage,
|
pageUsage,
|
||||||
}: MobileSidebarProps) {
|
}: MobileSidebarProps) {
|
||||||
|
|
@ -143,6 +145,7 @@ export function MobileSidebar({
|
||||||
onSettings={onSettings}
|
onSettings={onSettings}
|
||||||
onManageMembers={onManageMembers}
|
onManageMembers={onManageMembers}
|
||||||
onSeeAllSearchSpaces={onSeeAllSearchSpaces}
|
onSeeAllSearchSpaces={onSeeAllSearchSpaces}
|
||||||
|
onUserSettings={onUserSettings}
|
||||||
onLogout={onLogout}
|
onLogout={onLogout}
|
||||||
pageUsage={pageUsage}
|
pageUsage={pageUsage}
|
||||||
className="w-full border-none"
|
className="w-full border-none"
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue