diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 31b218473..929128d48 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -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" diff --git a/apps/mobile/src/modules/list/FollowList.tsx b/apps/mobile/src/modules/list/FollowList.tsx index 2413f4b5f..03c7cf346 100644 --- a/apps/mobile/src/modules/list/FollowList.tsx +++ b/apps/mobile/src/modules/list/FollowList.tsx @@ -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(), })