Skip to content

Commit

Permalink
Config url
Browse files Browse the repository at this point in the history
  • Loading branch information
kelvinkipruto committed Sep 14, 2023
1 parent 6e71624 commit 5ca44ff
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/codeforafrica-deploy-review-app.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ jobs:
uses: docker/build-push-action@v3
with:
build-args: |
MONGODB_URL=${{ secrets.CODEFORAFRICA_MONGO_URL }}/${{ secrets.CODEFORAFRICA_MONGO_DB_NAME }}
MONGODB_URL=${{ secrets.CODEFORAFRICA_MONGO_URL }}/${{ env.APP_NAME }}
NEXT_PUBLIC_APP_URL=${{ env.NEXT_PUBLIC_APP_URL }}
PAYLOAD_SECRET=${{ secrets.CODEFORAFRICA_PAYLOAD_SECRET_KEY }}
GHOST_URL=${{ secrets.GHOST_URL }}
Expand Down
2 changes: 1 addition & 1 deletion apps/codeforafrica/src/lib/data/seo.js
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ export default function getPageSeoFromMeta(page, settings) {
metaDescription || stringifyDescription(siteDescription) || null;
const titleTemplate = siteTitle ? `%s | ${siteTitle}` : null;
const defaultTitle = siteTitle || null;
const canonical = site?.url?.replace(/\/+$/, "");
const canonical = site.url.replace(/\/+$/, "");
const openGraph = {
title,
description,
Expand Down

0 comments on commit 5ca44ff

Please sign in to comment.