aboutsummaryrefslogtreecommitdiffstats
path: root/packages/shared/src/schemas/Action.ts
diff options
context:
space:
mode:
Diffstat (limited to 'packages/shared/src/schemas/Action.ts')
-rw-r--r--packages/shared/src/schemas/Action.ts5
1 files changed, 0 insertions, 5 deletions
diff --git a/packages/shared/src/schemas/Action.ts b/packages/shared/src/schemas/Action.ts
index ce983fa..7ece27a 100644
--- a/packages/shared/src/schemas/Action.ts
+++ b/packages/shared/src/schemas/Action.ts
@@ -20,7 +20,6 @@
20 20
21import { z } from 'zod'; 21import { z } from 'zod';
22 22
23import { BrowserViewBounds } from './BrowserViewBounds';
24import { ServiceAction } from './ServiceAction'; 23import { ServiceAction } from './ServiceAction';
25import { ThemeSource } from './ThemeSource'; 24import { ThemeSource } from './ThemeSource';
26 25
@@ -31,10 +30,6 @@ export const Action = /* @__PURE__ */ (() =>
31 serviceId: z.string(), 30 serviceId: z.string(),
32 }), 31 }),
33 z.object({ 32 z.object({
34 action: z.literal('set-browser-view-bounds'),
35 browserViewBounds: BrowserViewBounds,
36 }),
37 z.object({
38 action: z.literal('set-theme-source'), 33 action: z.literal('set-theme-source'),
39 themeSource: ThemeSource, 34 themeSource: ThemeSource,
40 }), 35 }),