Skip to content

Commit 8e11a09

Browse files
committed
fix
1 parent ba6cab9 commit 8e11a09

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

apps/builder/app/routes/rest.assets_.$name.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,10 +66,10 @@ export const action = async (
6666
contentTypeArr[0] === "video" ? contentTypeArr[1] : undefined;
6767

6868
const width = url.searchParams.has("width")
69-
? parseInt(url.searchParams.get("width")!, 10)
69+
? Number.parseInt(url.searchParams.get("width")!, 10)
7070
: undefined;
7171
const height = url.searchParams.has("height")
72-
? parseInt(url.searchParams.get("height")!, 10)
72+
? Number.parseInt(url.searchParams.get("height")!, 10)
7373
: undefined;
7474

7575
const assetInfoFallback =

0 commit comments

Comments
 (0)