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/dot 354 design and implement offline component #826

Open
wants to merge 21 commits into
base: main
Choose a base branch
from
Open
Changes from 1 commit
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
Prev Previous commit
Next Next commit
correcting links in footer
  • Loading branch information
Ragnhimd committed Oct 25, 2023
commit 1b87181f48d9733709c9f614b306e165ec9848bb
8 changes: 4 additions & 4 deletions apps/web/src/components/organisms/Footer/Footer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,29 +5,29 @@

export interface FooterLinkType {
main: {
label: string,

Check failure on line 8 in apps/web/src/components/organisms/Footer/Footer.tsx

View workflow job for this annotation

GitHub Actions / Build and Test (ubuntu-latest)

Delete `,`
href: string
}[]
second: {
label: string,

Check failure on line 12 in apps/web/src/components/organisms/Footer/Footer.tsx

View workflow job for this annotation

GitHub Actions / Build and Test (ubuntu-latest)

Delete `,`
href: string
}[]
}

const footerLinks: FooterLinkType = {
main: [{

Check failure on line 18 in apps/web/src/components/organisms/Footer/Footer.tsx

View workflow job for this annotation

GitHub Actions / Build and Test (ubuntu-latest)

Insert `⏎····`
label: "PROFIL", href: "/profil"
label: "PROFIL", href: "/profile"

Check failure on line 19 in apps/web/src/components/organisms/Footer/Footer.tsx

View workflow job for this annotation

GitHub Actions / Build and Test (ubuntu-latest)

Replace `label:·"PROFIL",·href:·"/profile"` with `··label:·"PROFIL",⏎······href:·"/profile",`
}, {

Check failure on line 20 in apps/web/src/components/organisms/Footer/Footer.tsx

View workflow job for this annotation

GitHub Actions / Build and Test (ubuntu-latest)

Replace `··},` with `····},⏎···`
label: "HJEM", href: "/"

Check failure on line 21 in apps/web/src/components/organisms/Footer/Footer.tsx

View workflow job for this annotation

GitHub Actions / Build and Test (ubuntu-latest)

Replace `····label:·"HJEM",·href:·"/"` with `······label:·"HJEM",⏎······href:·"/",`
}, {

Check failure on line 22 in apps/web/src/components/organisms/Footer/Footer.tsx

View workflow job for this annotation

GitHub Actions / Build and Test (ubuntu-latest)

Replace `··},` with `····},⏎···`
label: "KARRIERE", href: "/career"

Check failure on line 23 in apps/web/src/components/organisms/Footer/Footer.tsx

View workflow job for this annotation

GitHub Actions / Build and Test (ubuntu-latest)

Replace `····label:·"KARRIERE",·href:·"/career"` with `······label:·"KARRIERE",⏎······href:·"/career",`
}, {

Check failure on line 24 in apps/web/src/components/organisms/Footer/Footer.tsx

View workflow job for this annotation

GitHub Actions / Build and Test (ubuntu-latest)

Replace `··},` with `····},⏎···`
label: "WIKI", href: "/wiki"
}, { label: "BIDRA", href: "" }],
}, { label: "BIDRA", href: "/contribute" }],
second: [{
label: "Besøksadresse", href: "/profil"
label: "Besøksadresse", href: ""
}, {
label: "Kontaktinformasjon", href: "/profil"
label: "Kontaktinformasjon", href: ""
}, { label: "Post og faktura", href: "" }],
}

Expand Down
Loading