From b8725ad1e66fa795b938b58c0117775b38b2ae2a Mon Sep 17 00:00:00 2001 From: oddsve Date: Mon, 30 Sep 2024 11:27:05 +0200 Subject: [PATCH] lagt til Stavanger som et office --- src/components/blob-link/index.tsx | 20 +++++++++++--------- src/office-selector/index.tsx | 2 +- 2 files changed, 12 insertions(+), 10 deletions(-) diff --git a/src/components/blob-link/index.tsx b/src/components/blob-link/index.tsx index df113a8d3..f875a9da0 100644 --- a/src/components/blob-link/index.tsx +++ b/src/components/blob-link/index.tsx @@ -24,15 +24,17 @@ export default function BlobLink({ }: BlobLinkProps) { return ( - - {text} - +
+ + {text} + +
); } diff --git a/src/office-selector/index.tsx b/src/office-selector/index.tsx index 0f52729cb..cb6e8d92f 100644 --- a/src/office-selector/index.tsx +++ b/src/office-selector/index.tsx @@ -1,7 +1,7 @@ import Link from 'next/link'; import style from './office.module.css'; -export const offices = ['trondheim', 'oslo', 'bergen'] as const; +export const offices = ['trondheim', 'oslo', 'bergen', 'stavanger'] as const; export type Office = (typeof offices)[number]; export function stringToDepartment(dep?: string): Office | undefined {