ci: fix app build errors
All checks were successful
Build and Push Docker Image / tests (push) Successful in 35s
Build and Push Docker Image / build (push) Successful in 1m51s

This commit is contained in:
Lars Hampe 2024-10-10 22:23:32 +02:00
parent b59dbce56c
commit ba7edec2cb
4 changed files with 6 additions and 10 deletions

View File

@ -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'

View File

@ -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"}

View File

@ -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,

View File

@ -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}
/>