Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feature/update-cards #4

Merged
merged 2 commits into from
Jan 24, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .env
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ APP_REPRO=https://github.com/ConductionNL/skeleton-app

CONTAINER_REGISTRY_BASE=ghcr.io/conductionnl
HELM_REPOSITORY=https://raw.githubusercontent.com/ConductionNL/skeleton-app/master/api/helm/
CONTAINER_PROJECT_NAME=woo-website
CONTAINER_PROJECT_NAME=waardepapieren-scan-app
##################################################

# Notifcation settings
Expand Down
12 changes: 6 additions & 6 deletions publiccode.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
publiccodeYmlVersion: '0.1'
name: scan-app
applicationSuite: null
url: https://github.com/ConductionNL/woo-website-template
url: https://github.com/ConductionNL/waardepapieren-scan-app
landingURL: null
isBasedOn: null
softwareVersion: null
Expand All @@ -19,8 +19,8 @@ description:
en:
localisedName: null
genericName: null
shortDescription: "Template for setting up a Woo page using NL Design tokens."
longDescription: "Template for setting up a Woo page using NL Design tokens."
shortDescription: "Waardepapieren scan app to scan QR codes."
longDescription: "Waardepapieren scan app to scan QR codes."
documentation: null
apiDocumentation: null
features: []
Expand All @@ -30,8 +30,8 @@ description:
nl:
localisedName: null
genericName: null
shortDescription: "Template voor het opzetten van een Woo pagina aan de hand van NL Design tokens."
longDescription: "Template voor het opzetten van een Woo pagina aan de hand van NL Design tokens."
shortDescription: "Waardepapieren scan app om QR codes te scannen."
longDescription: "Waardepapieren scan app om QR codes te scannen."
documentation: null
apiDocumentation: null
features: []
Expand Down Expand Up @@ -84,4 +84,4 @@ nl:
model: null
upl: []
downloadUrls:
- https://github.com/ConductionNL/woo-website-template/archive/refs/heads/main.zip
- https://github.com/ConductionNL/waardepapieren-scan-app/archive/refs/heads/main.zip
4 changes: 1 addition & 3 deletions pwa/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,7 @@
"private": true,
"description": "Product Website Template",
"author": "Conduction",
"keywords": [
"gatsby"
],
"keywords": ["gatsby"],
"scripts": {
"develop": "gatsby develop",
"start": "gatsby develop",
Expand Down
2 changes: 1 addition & 1 deletion pwa/src/templates/resultTemplate/ResultTemplate.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ export const ResultTemplate: React.FC<ResultTemplateProps> = ({ id }) => {
setToken(publicKey);
}
if (!token) {
getToken();
getToken().catch((err) => (setResult(false), setData(err.message)));
}
});

Expand Down
4 changes: 2 additions & 2 deletions pwa/src/templates/templateParts/footer/FooterTemplate.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ const WithLoveByConduction: React.FC = () => {
<div>
<Link
className={styles.withLoveLink}
href="https://github.com/ConductionNL/woo-website-template"
href="https://github.com/ConductionNL/waardepapieren-scan-app"
target="_blank"
aria-label={`${t("Link to github repository")}, ${t("Opens a new window")}`}
>
Expand All @@ -148,7 +148,7 @@ const WithLoveByConduction: React.FC = () => {
with{" "}
<Link
className={styles.withLoveLink}
href="https://github.com/ConductionNL/woo-website-template/graphs/contributors"
href="https://github.com/ConductionNL/waardepapieren-scan-app/graphs/contributors"
target="_blank"
aria-label={`${t("Link to github contributors page")}, ${t("Opens a new window")}`}
>
Expand Down
Loading