Skip to content

Commit f5d3741

Browse files
committed
fix fund key secrect
1 parent 48ccce4 commit f5d3741

2 files changed

Lines changed: 1 addition & 3 deletions

File tree

app/api/chat/route.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,6 @@ import { NextRequest, NextResponse } from "next/server";
1313
import { createClient } from "@supabase/supabase-js";
1414
import { cookies } from "next/headers";
1515

16-
export const dynamic = 'force-dynamic';
17-
1816
// ---------- Config ----------
1917

2018
const OPENAI_API_KEY = process.env.OPENAI_API_KEY!;

app/fund/create/page.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1075,7 +1075,7 @@ function CreateSubmissionContent() {
10751075
<div className="flex gap-6">
10761076
<div className="w-48 h-32 bg-gray-300 rounded-lg flex items-center justify-center overflow-hidden">
10771077
<img
1078-
src={`https://maps.googleapis.com/maps/api/streetview?size=400x300&location=${encodeURIComponent(property.address + ', ' + property.city + ', ' + property.state)}&heading=0&pitch=0&key=${process.env.NEXT_PUBLIC_GOOGLE_MAPS_API_KEY || 'AIzaSyBOA7lqk8SbE4B7OEWp2F3Fk8cWU3GHgQg'}`}
1078+
src={`https://maps.googleapis.com/maps/api/streetview?size=400x300&location=${encodeURIComponent(property.address + ', ' + property.city + ', ' + property.state)}&heading=0&pitch=0&key=${process.env.NEXT_PUBLIC_GOOGLE_MAPS_API_KEY}`}
10791079
alt={`Street view of ${property.address}`}
10801080
className="w-full h-full object-cover rounded-lg"
10811081
onError={(e) => {

0 commit comments

Comments
 (0)