ci: fix app build errors
This commit is contained in:
parent
b59dbce56c
commit
ba7edec2cb
@ -5,12 +5,7 @@ import {
|
||||
TooltipTrigger,
|
||||
} from '@boring.tools/ui'
|
||||
import { Link, Outlet, createLazyFileRoute } from '@tanstack/react-router'
|
||||
import {
|
||||
FileStackIcon,
|
||||
Globe2Icon,
|
||||
PencilIcon,
|
||||
TerminalSquareIcon,
|
||||
} from 'lucide-react'
|
||||
import { FileStackIcon, PencilIcon } from 'lucide-react'
|
||||
import { ChangelogDelete } from '../components/Changelog/Delete'
|
||||
import { useChangelogById } from '../hooks/useChangelog'
|
||||
|
||||
|
@ -1 +1 @@
|
||||
{"root":["./src/main.tsx","./src/routeTree.gen.ts","./src/vite-env.d.ts","./src/components/Layout.tsx","./src/components/Navigation.tsx","./src/components/NavigationMobile.tsx","./src/hooks/useChangelog.ts","./src/routes/__root.tsx","./src/routes/index.lazy.tsx","./src/routes/changelog/index.lazy.tsx","./src/routes/user/index.lazy.tsx","./src/utils/navigation-routes.ts","./src/utils/queryFetch.ts"],"version":"5.6.2"}
|
||||
{"root":["./src/main.tsx","./src/routeTree.gen.ts","./src/vite-env.d.ts","./src/components/Layout.tsx","./src/components/Navigation.tsx","./src/components/NavigationMobile.tsx","./src/components/Changelog/Delete.tsx","./src/components/Changelog/VersionStatus.tsx","./src/hooks/useChangelog.ts","./src/routes/__root.tsx","./src/routes/changelog.$id.edit.lazy.tsx","./src/routes/changelog.$id.index.lazy.tsx","./src/routes/changelog.$id.lazy.tsx","./src/routes/changelog.$id.version.$versionId.tsx","./src/routes/changelog.$id.versionCreate.lazy.tsx","./src/routes/changelog.create.lazy.tsx","./src/routes/changelog.index.lazy.tsx","./src/routes/index.lazy.tsx","./src/routes/user/index.lazy.tsx","./src/utils/navigation-routes.ts","./src/utils/queryFetch.ts"],"version":"5.6.2"}
|
@ -1,4 +1,5 @@
|
||||
import { z } from '@hono/zod-openapi'
|
||||
import { VersionOutput } from '../version'
|
||||
|
||||
export const ChangelogOutput = z
|
||||
.object({
|
||||
@ -11,7 +12,7 @@ export const ChangelogOutput = z
|
||||
description: z.string().openapi({
|
||||
example: 'This is a changelog',
|
||||
}),
|
||||
versions: z.array(z.object({})).optional(),
|
||||
versions: z.array(VersionOutput).optional(),
|
||||
computed: z.object({
|
||||
versionCount: z.number().openapi({
|
||||
example: 5,
|
||||
|
@ -52,8 +52,8 @@ function Calendar({
|
||||
...classNames,
|
||||
}}
|
||||
components={{
|
||||
IconLeft: ({ ...props }) => <ChevronLeft className="h-4 w-4" />,
|
||||
IconRight: ({ ...props }) => <ChevronRight className="h-4 w-4" />,
|
||||
IconLeft: () => <ChevronLeft className="h-4 w-4" />,
|
||||
IconRight: () => <ChevronRight className="h-4 w-4" />,
|
||||
}}
|
||||
{...props}
|
||||
/>
|
||||
|
Loading…
Reference in New Issue
Block a user