Skip to content

Commit

Permalink
Oppdatere stylign på arbeidssøkerstatus feilmelding
Browse files Browse the repository at this point in the history
  • Loading branch information
nattaphongklinjan committed Apr 5, 2024
1 parent 42a7c71 commit 13da705
Showing 1 changed file with 9 additions and 4 deletions.
13 changes: 9 additions & 4 deletions src/components/arbeidssoker-status/ArbeidssokerStatus.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// import useSWR from "swr";
import { useSanity } from "../../context/sanity-context";
// import { Alert, Skeleton } from "@navikt/ds-react";
import { Alert } from "@navikt/ds-react";
import { PortableText } from "@portabletext/react";
import styles from "./ArbeidssokerStatus.module.css";

Expand All @@ -20,6 +20,13 @@ export function ArbeidssokerStatus() {
// );
// }

// Midlertidig feilmeling på grunn av teknisk feil i arbeidssøkerstaatus
return (
<Alert variant="warning" className={styles.arbeidssokerStatusNotRegisteredAlertBox}>
<PortableText value={getRichText("arbeidssokers-status.teknisk-feil")} />
</Alert>
);

// if (!isLoading && error) {
// return (
// <Alert variant="warning" className={styles.arbeidssokerStatusNotRegisteredAlertBox}>
Expand All @@ -36,11 +43,9 @@ export function ArbeidssokerStatus() {
// );
// }

// Midlertidig feilmeling på grunn av teknisk feil i arbeidssøkerstaatus
return (
<div className={styles.arbeidssokerStatusContainer}>
{/* <PortableText value={getRichText("arbeidssokers-status.er-registrert")} /> */}
<PortableText value={getRichText("arbeidssokers-status.teknisk-feil")} />
<PortableText value={getRichText("arbeidssokers-status.er-registrert")} />
</div>
);
}

0 comments on commit 13da705

Please sign in to comment.