From d99f17c9d17fd318aae172fd38845ff80a1d124b Mon Sep 17 00:00:00 2001 From: Ahmad <103906421+ahmadk953@users.noreply.github.com> Date: Sat, 17 Feb 2024 14:58:23 -0500 Subject: [PATCH] Updated Unsplash Access Key ENV Name --- lib/unsplash.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/unsplash.ts b/lib/unsplash.ts index 098d29f..17c8eae 100644 --- a/lib/unsplash.ts +++ b/lib/unsplash.ts @@ -1,6 +1,6 @@ import { createApi } from 'unsplash-js'; export const unsplash = createApi({ - accessKey: process.env.NEXT_PUBLIC_UNSPLASH_ACCESS_KEY!, + accessKey: process.env.UNSPLASH_ACCESS_KEY!, fetch: fetch, });