fix: add missing showTimeInMonthView and showOnMobile type definitions to settings store

This commit is contained in:
Linus Rath
2026-03-20 18:17:31 +01:00
parent d68b81e6b8
commit a8be40579e
2 changed files with 10 additions and 0 deletions
+2
View File
@@ -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>>({});