fix: lint
This commit is contained in:
parent
c474c9c805
commit
d74cea5b1f
|
|
@ -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"
|
||||
|
|
|
|||
|
|
@ -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(),
|
||||
})
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue