fix: add missing showTimeInMonthView and showOnMobile type definitions to settings store
This commit is contained in:
@@ -18,6 +18,7 @@ interface SidebarAppFormData {
|
||||
url: string;
|
||||
icon: string;
|
||||
openMode: 'tab' | 'inline';
|
||||
showOnMobile: boolean;
|
||||
}
|
||||
|
||||
function SidebarAppForm({
|
||||
@@ -37,6 +38,7 @@ function SidebarAppForm({
|
||||
url: app?.url || '',
|
||||
icon: app?.icon || 'Globe',
|
||||
openMode: app?.openMode || 'tab',
|
||||
showOnMobile: app?.showOnMobile ?? false,
|
||||
});
|
||||
const [errors, setErrors] = useState<Record<string, string>>({});
|
||||
|
||||
|
||||
Reference in New Issue
Block a user