diff options
author | Eric Bailey <git@esb.lol> | 2024-09-26 11:47:13 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-09-26 11:47:13 -0500 |
commit | 5a142161cb90f65c2593b58c7471b6657a2cd0a2 (patch) | |
tree | fde255e4a023be739015a5d77f8f69b3a0c1707b /src/state/queries | |
parent | 27e09e7adccc4d002359425492eb8773da73ebcb (diff) | |
download | voidsky-5a142161cb90f65c2593b58c7471b6657a2cd0a2.tar.zst |
Remove 10milly dialog, revert header logo changes (#5503)
Diffstat (limited to 'src/state/queries')
-rw-r--r-- | src/state/queries/nuxs/definitions.ts | 15 |
1 files changed, 4 insertions, 11 deletions
diff --git a/src/state/queries/nuxs/definitions.ts b/src/state/queries/nuxs/definitions.ts index 63a807962..8166602c8 100644 --- a/src/state/queries/nuxs/definitions.ts +++ b/src/state/queries/nuxs/definitions.ts @@ -3,23 +3,16 @@ import zod from 'zod' import {BaseNux} from '#/state/queries/nuxs/types' export enum Nux { - TenMillionDialog = 'TenMillionDialog', NeueTypography = 'NeueTypography', } export const nuxNames = new Set(Object.values(Nux)) -export type AppNux = - | BaseNux<{ - id: Nux.TenMillionDialog - data: undefined - }> - | BaseNux<{ - id: Nux.NeueTypography - data: undefined - }> +export type AppNux = BaseNux<{ + id: Nux.NeueTypography + data: undefined +}> export const NuxSchemas: Record<Nux, zod.ZodObject<any> | undefined> = { - [Nux.TenMillionDialog]: undefined, [Nux.NeueTypography]: undefined, } |