Skip to content

Commit

Permalink
iterate
Browse files Browse the repository at this point in the history
  • Loading branch information
serefyarar committed Sep 8, 2024
1 parent b2fe25d commit 50089f2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion web-app/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ ARG INFURA_API_KEY
ENV INFURA_API_KEY=$INFURA_API_KEY

ARG MAGICBELL_API_KEY
ENV MAGICBELL_API_KEY=$MAGICBELL_API_KEY
ENV NEXT_PUBLIC_MAGICBELL_API_KEY=$MAGICBELL_API_KEY

COPY . .
RUN yarn
Expand Down
2 changes: 1 addition & 1 deletion web-app/src/app/notifications/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ const Notifications: NextPage = () => {
console.log(profile);

const webPushClient = new WebPushClient({
apiKey: process.env.MAGICBELL_API_KEY || "",
apiKey: process.env.NEXT_PUBLIC_MAGICBELL_API_KEY || "",
userExternalId: profile?.id,
userHmac: profile.hmac!,
serviceWorkerPath: "/sw.js",
Expand Down

0 comments on commit 50089f2

Please sign in to comment.