Skip to content

Commit

Permalink
Merge pull request #2153 from navikt/bugfix/FAGSYSTEM-329572
Browse files Browse the repository at this point in the history
[FAGSYSTEM-329572] Meldingstekst overføres til BLOKKBOKSTAVER
  • Loading branch information
abrhanav authored May 10, 2024
2 parents 22604d5 + 606aceb commit e937075
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ import useDebounce from '../../../../../utils/hooks/use-debounce';
import StandardTekstValg from './velgTekst/StandardTekstValg';
import * as StandardTeksterModels from './domain';
import theme from '../../../../../styles/personOversiktTheme';
import { captitalize } from '../../../../../utils/string-utils';
import useHotkey from '../../../../../utils/hooks/use-hotkey';
import { cyclicClamp } from '../../../../../utils/math';
import { autofullfor, AutofullforData, byggAutofullforMap, useAutoFullforData } from '../autofullforUtils';
Expand Down Expand Up @@ -104,7 +103,7 @@ function velgTekst(
autofullforData.person,
autofullforData.saksbehandler
);
const ferdigTekst = captitalize(autofullfor(localeTekst, nokler));
const ferdigTekst = autofullfor(localeTekst, nokler);
settTekst(ferdigTekst);
} else {
settTekst(localeTekst);
Expand Down

0 comments on commit e937075

Please sign in to comment.