Skip to content

Commit

Permalink
Small type fix
Browse files Browse the repository at this point in the history
  • Loading branch information
oBusk committed Mar 10, 2024
1 parent 09e4dc4 commit c66bb1b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/app/api/-/destination/route.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { NextRequest, NextResponse } from "next/server";
import { type NextRequest, NextResponse } from "next/server";
import destination from "^/lib/destination";

function assureArrayLength(specs: string[]) {
Expand Down
2 changes: 1 addition & 1 deletion src/middleware.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { NextRequest, NextResponse } from "next/server";
import { type NextRequest, NextResponse } from "next/server";
import type { Destination } from "./lib/destination";
import specsToDiff from "./lib/utils/specsToDiff";
import splitParts from "./lib/utils/splitParts";
Expand Down

0 comments on commit c66bb1b

Please sign in to comment.