format: auto-fix via pnpm format:fix

This commit is contained in:
CREDO23 2026-03-24 16:07:28 +02:00
parent a74aa4da4f
commit 0e49cc33f8
37 changed files with 128 additions and 175 deletions

View file

@ -1,4 +1,4 @@
import { table, string, number, json } from "@rocicorp/zero";
import { json, number, string, table } from "@rocicorp/zero";
export const newChatMessageTable = table("new_chat_messages")
.columns({

View file

@ -1,4 +1,4 @@
import { table, string, number, boolean, json } from "@rocicorp/zero";
import { boolean, json, number, string, table } from "@rocicorp/zero";
export const documentTable = table("documents")
.columns({

View file

@ -1,4 +1,4 @@
import { table, string, number, boolean, json } from "@rocicorp/zero";
import { boolean, json, number, string, table } from "@rocicorp/zero";
export const notificationTable = table("notifications")
.columns({

View file

@ -1,4 +1,4 @@
import { createSchema, createBuilder, relationships } from "@rocicorp/zero";
import { createBuilder, createSchema, relationships } from "@rocicorp/zero";
import { chatCommentTable, chatSessionStateTable, newChatMessageTable } from "./chat";
import { documentTable, searchSourceConnectorTable } from "./documents";
import { notificationTable } from "./inbox";