Skip to content

Commit 1aab582

Browse files
committed
fix broken paths
1 parent bb4f6fd commit 1aab582

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

app/changelog/%5Fadmin/layout.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import {type ReactNode, Suspense} from 'react';
2-
import {GET} from 'app/changelog/api/auth/[...nextauth]/route';
2+
import {GET} from 'app/api/auth/[...nextauth]/route';
33
import type {Metadata} from 'next';
44
import {getServerSession} from 'next-auth/next';
55

app/changelog/%5Fadmin/upload/route.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import crypto from 'crypto';
22

33
import {Storage} from '@google-cloud/storage';
4-
import {GET as sessionHandler} from 'app/changelog/api/auth/[...nextauth]/route';
4+
import {GET as sessionHandler} from 'app/api/auth/[...nextauth]/route';
55
import {NextRequest} from 'next/server';
66
import {getServerSession} from 'next-auth/next';
77

app/changelog/[slug]/page.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import {Fragment, Suspense} from 'react';
22
import {type Category, type Changelog} from '@prisma/client';
33
import * as Sentry from '@sentry/nextjs';
4-
import {GET as sessionHandler} from 'app/changelog/api/auth/[...nextauth]/route';
4+
import {GET as sessionHandler} from 'app/api/auth/[...nextauth]/route';
55
import type {Metadata, ResolvingMetadata} from 'next';
66
import {unstable_cache} from 'next/cache';
77
import Link from 'next/link';

0 commit comments

Comments
 (0)