diff options
| author | Fuwn <[email protected]> | 2025-05-15 03:00:29 -0700 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2025-05-15 03:00:34 -0700 |
| commit | b78aa74149bc006a2864af6af6e98a389767f3d8 (patch) | |
| tree | 098a0a131658857167d45e639f7336c346bb4062 /src/routes | |
| parent | refactor(CommandPalette): Move and rename action type (diff) | |
| download | due.moe-b78aa74149bc006a2864af6af6e98a389767f3d8.tar.xz due.moe-b78aa74149bc006a2864af6af6e98a389767f3d8.zip | |
refactor(CommandPalette): Globally rename action type
Diffstat (limited to 'src/routes')
| -rw-r--r-- | src/routes/+layout.svelte | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/routes/+layout.svelte b/src/routes/+layout.svelte index f5adcb68..92300d76 100644 --- a/src/routes/+layout.svelte +++ b/src/routes/+layout.svelte @@ -32,7 +32,7 @@ import { database as userDatabase } from '$lib/Database/IDB/user'; import CommandPalette from '$lib/CommandPalette/CommandPalette.svelte'; import { defaultActions } from '$lib/CommandPalette/actions'; - import { toolsAsCommandPaletteItemSet } from '$lib/Tools/tools'; + import { toolsAsCommandPaletteActions } from '$lib/Tools/tools'; injectSpeedInsights(); @@ -157,7 +157,7 @@ <HeadTitle /> -<CommandPalette items={defaultActions.concat(toolsAsCommandPaletteItemSet())} /> +<CommandPalette items={defaultActions.concat(toolsAsCommandPaletteActions())} /> {#if !$locales.includes('en') || !$locale().navigation} <Message /> |