fix: lint

This commit is contained in:
DIYgod 2025-06-23 18:05:24 +08:00
parent c474c9c805
commit d74cea5b1f
No known key found for this signature in database
2 changed files with 4 additions and 1 deletions

View File

@ -45,6 +45,9 @@ jobs:
cache: "pnpm"
- name: Install dependencies
run: pnpm install
- name: Build web and SSR server
run: |
npm exec turbo run Folo#build:web @follow/ssr#build
- name: Format, Lint and Typecheck
run: |
export NODE_OPTIONS="--max_old_space_size=16384"

View File

@ -53,7 +53,7 @@ export const FollowList = (props: { id: string }) => {
const formSchema = z.object({
view: z.number(),
isPrivate: z.boolean().default(false),
isPrivate: z.boolean(),
title: z.string().optional(),
})