mirror of
https://github.com/cpvalente/ontime.git
synced 2026-08-21 06:59:09 +00:00
chore: upgrade deps (#698)
This commit is contained in:
@@ -3,11 +3,11 @@ import { create } from 'zustand';
|
||||
export type SettingsOption = {
|
||||
id: string;
|
||||
label: string;
|
||||
secondary?: SettingsOption[];
|
||||
secondary?: Readonly<SettingsOption[]>;
|
||||
split?: boolean;
|
||||
};
|
||||
|
||||
export const settingPanels: SettingsOption[] = [
|
||||
export const settingPanels: Readonly<SettingsOption[]> = [
|
||||
{
|
||||
id: 'project',
|
||||
label: 'Project',
|
||||
|
||||
Reference in New Issue
Block a user