Skip to content

Commit 7c085e9

Browse files
committed
fix: correct provider name in route to match expected value
1 parent 7b00027 commit 7c085e9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/route.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { NextResponse } from 'next/server';
22

33
export async function GET(request: Request) {
4-
const providerName = process.env.PROVIDER_NAME || 'Agairth';
4+
const providerName = process.env.PROVIDER_NAME || 'Aigarth ';
55
const picturePath = process.env.PICTURE_PATH || '/default/path/to/picture.png';
66
const providerDescription = process.env.PROVIDER_DESCRIPTION || 'Default provider description';
77

0 commit comments

Comments
 (0)