File tree Expand file tree Collapse file tree 5 files changed +5
-6
lines changed
Expand file tree Collapse file tree 5 files changed +5
-6
lines changed Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ export function createPresets() {
2626 query,
2727 createPreset : async ( preset : CreatePreset ) => {
2828 const config = { ...preset . config } ;
29- // @ts -ignore we reeeally don't want the timeline in the preset
29+ // @ts -expect-error we reeeally don't want the timeline in the preset
3030 config . timeline = undefined ;
3131
3232 await updatePresets ( ( store ) => {
Original file line number Diff line number Diff line change @@ -10,9 +10,8 @@ import { Hono } from "hono";
1010import { z } from "zod" ;
1111import { dub } from "@/utils/dub" ;
1212import { createBucketProvider } from "@/utils/s3" ;
13-
14- import { withAuth } from "../../utils" ;
1513import { stringOrNumberOptional } from "@/utils/zod" ;
14+ import { withAuth } from "../../utils" ;
1615
1716export const app = new Hono ( ) . use ( withAuth ) ;
1817
Original file line number Diff line number Diff line change @@ -8,8 +8,8 @@ import { Hono } from "hono";
88import { z } from "zod" ;
99import { withAuth } from "@/app/api/utils" ;
1010import { createBucketProvider } from "@/utils/s3" ;
11- import { parseVideoIdOrFileKey } from "../utils" ;
1211import { stringOrNumberOptional } from "@/utils/zod" ;
12+ import { parseVideoIdOrFileKey } from "../utils" ;
1313
1414export const app = new Hono ( ) . use ( withAuth ) ;
1515
Original file line number Diff line number Diff line change @@ -11,9 +11,9 @@ import { eq, sql } from "drizzle-orm";
1111import { Hono } from "hono" ;
1212import { z } from "zod" ;
1313import { createBucketProvider } from "@/utils/s3" ;
14+ import { stringOrNumberOptional } from "@/utils/zod" ;
1415import { withAuth } from "../../utils" ;
1516import { parseVideoIdOrFileKey } from "../utils" ;
16- import { stringOrNumberOptional } from "@/utils/zod" ;
1717
1818export const app = new Hono ( ) . use ( withAuth ) ;
1919
Original file line number Diff line number Diff line change 11import { serverEnv } from "@cap/env" ;
22import { Client , type Config } from "@planetscale/database" ;
33import { sql } from "drizzle-orm" ;
4- import { AnyMySqlColumn } from "drizzle-orm/mysql-core" ;
4+ import type { AnyMySqlColumn } from "drizzle-orm/mysql-core" ;
55import { drizzle } from "drizzle-orm/planetscale-serverless" ;
66
77function createDrizzle ( ) {
You can’t perform that action at this time.
0 commit comments