Skip to content

Commit f99cbaa

Browse files
format
1 parent d746b58 commit f99cbaa

File tree

5 files changed

+5
-6
lines changed

5 files changed

+5
-6
lines changed

apps/desktop/src/utils/createPresets.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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) => {

apps/web/app/api/desktop/[...route]/video.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,8 @@ import { Hono } from "hono";
1010
import { z } from "zod";
1111
import { dub } from "@/utils/dub";
1212
import { createBucketProvider } from "@/utils/s3";
13-
14-
import { withAuth } from "../../utils";
1513
import { stringOrNumberOptional } from "@/utils/zod";
14+
import { withAuth } from "../../utils";
1615

1716
export const app = new Hono().use(withAuth);
1817

apps/web/app/api/upload/[...route]/multipart.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ import { Hono } from "hono";
88
import { z } from "zod";
99
import { withAuth } from "@/app/api/utils";
1010
import { createBucketProvider } from "@/utils/s3";
11-
import { parseVideoIdOrFileKey } from "../utils";
1211
import { stringOrNumberOptional } from "@/utils/zod";
12+
import { parseVideoIdOrFileKey } from "../utils";
1313

1414
export const app = new Hono().use(withAuth);
1515

apps/web/app/api/upload/[...route]/signed.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@ import { eq, sql } from "drizzle-orm";
1111
import { Hono } from "hono";
1212
import { z } from "zod";
1313
import { createBucketProvider } from "@/utils/s3";
14+
import { stringOrNumberOptional } from "@/utils/zod";
1415
import { withAuth } from "../../utils";
1516
import { parseVideoIdOrFileKey } from "../utils";
16-
import { stringOrNumberOptional } from "@/utils/zod";
1717

1818
export const app = new Hono().use(withAuth);
1919

packages/database/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { serverEnv } from "@cap/env";
22
import { Client, type Config } from "@planetscale/database";
33
import { sql } from "drizzle-orm";
4-
import { AnyMySqlColumn } from "drizzle-orm/mysql-core";
4+
import type { AnyMySqlColumn } from "drizzle-orm/mysql-core";
55
import { drizzle } from "drizzle-orm/planetscale-serverless";
66

77
function createDrizzle() {

0 commit comments

Comments
 (0)