chore: upgrade deps (#698)

This commit is contained in:
Carlos Valente
2024-01-08 17:31:04 +01:00
committed by GitHub
parent 64573aff8a
commit 1f3133d4f3
5 changed files with 162 additions and 140 deletions
@@ -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',