Skip to content

Commit c66bb1b

Browse files
committed
Small type fix
1 parent 09e4dc4 commit c66bb1b

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/app/api/-/destination/route.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { NextRequest, NextResponse } from "next/server";
1+
import { type NextRequest, NextResponse } from "next/server";
22
import destination from "^/lib/destination";
33

44
function assureArrayLength(specs: string[]) {

src/middleware.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { NextRequest, NextResponse } from "next/server";
1+
import { type NextRequest, NextResponse } from "next/server";
22
import type { Destination } from "./lib/destination";
33
import specsToDiff from "./lib/utils/specsToDiff";
44
import splitParts from "./lib/utils/splitParts";

0 commit comments

Comments
 (0)