Skip to content

Commit

Permalink
oppdatert maxbeløp for inkluderingstilskudd (#1180)
Browse files Browse the repository at this point in the history
  • Loading branch information
sindredl authored Nov 8, 2023
1 parent 77f1bfb commit 56b634f
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import VerticalSpacer from '@/komponenter/layout/VerticalSpacer';
import { inkluderingstilskuddtypeTekst } from '@/messages';
import { Inkluderingstilskuddsutgift, InkluderingstilskuddsutgiftType } from '@/types/avtale';
import { formatterPenger } from '@/utils/PengeUtils';
import { Heading, Button, Select } from '@navikt/ds-react';
import { Button, Heading, Select } from '@navikt/ds-react';
import { ChangeEvent, FunctionComponent, useState } from 'react';

type Props = {
Expand All @@ -24,7 +24,7 @@ const OpprettEnTilskuddsutgift: FunctionComponent<Props> = (props) => {
const [beløpFeil, setBeløpFeil] = useState<string | undefined>();
const [typeFeil, setTypeFeil] = useState<string | undefined>();

const ÅRLIG_MAX_BELØP = 136700;
const ÅRLIG_MAX_BELØP = 143900;
const gjenståendeMaxBeløp = ÅRLIG_MAX_BELØP - props.totalBeløp;

const leggTil = async () => {
Expand Down

0 comments on commit 56b634f

Please sign in to comment.