Skip to content

Commit 0f55bac

Browse files
committed
Fix variabelnavn
1 parent f211f26 commit 0f55bac

File tree

1 file changed

+3
-3
lines changed
  • apps/dolly-frontend/src/main/js/src/components/bestillingsveileder/stegVelger/steg/steg0

1 file changed

+3
-3
lines changed

apps/dolly-frontend/src/main/js/src/components/bestillingsveileder/stegVelger/steg/steg0/Steg0.tsx

+3-3
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ const Steg0 = () => {
7575
const isOrganisasjon =
7676
opts.is?.nyOrganisasjon || opts.is?.nyStandardOrganisasjon || opts.is?.nyOrganisasjonFraMal
7777
const isNyIdent = opts.is?.nyBestilling || opts.is?.nyBestillingFraMal
78-
const VelgGruppeDisabled = opts.is?.leggTil || opts.is?.leggTilPaaGruppe
78+
const velgGruppeDisabled = opts.is?.leggTil || opts.is?.leggTilPaaGruppe
7979

8080
const formGruppeId = formMethods.watch('gruppeId')
8181
const rawGruppeId = formGruppeId || opts?.gruppeId || opts?.gruppe?.id
@@ -100,14 +100,14 @@ const Steg0 = () => {
100100

101101
return (
102102
<div className="start-bestilling-modal">
103-
{!isOrganisasjon && !VelgGruppeDisabled && (
103+
{!isOrganisasjon && !velgGruppeDisabled && (
104104
<>
105105
{isNyIdent && (
106106
<div className="dolly-panel dolly-panel-open">
107107
<VelgIdenttype gruppeId={numericGruppeId} />
108108
</div>
109109
)}
110-
{!VelgGruppeDisabled && (
110+
{!velgGruppeDisabled && (
111111
<div className="dolly-panel dolly-panel-open">
112112
<VelgGruppe formMethods={formMethods} title="Hvilken gruppe vil du bestille til?" />
113113
</div>

0 commit comments

Comments
 (0)