Skip to content
Snippets Groups Projects
Commit 4b7e7150 authored by Tore.Brede's avatar Tore.Brede
Browse files

Fixing some warnings

parent 3f1eeb93
No related branches found
No related tags found
1 merge request!163GREG-109 Theme updates
......@@ -171,17 +171,14 @@ const StepPersonForm = forwardRef(
label={t('common:ou')}
onChange={handleOuChange}
>
{ous.length > 0 ? (
{ous.length > 0 &&
ous
.sort(i18n.language === 'en' ? enSort : nbSort)
.map((ou) => (
<MenuItem key={ou.id.toString()} value={ou.id}>
{i18n.language === 'en' ? ou.en : ou.nb} ({ou.id})
</MenuItem>
))
) : (
<></>
)}
))}
</Select>
</FormControl>
......
import React, { forwardRef } from 'react'
import { useTranslation } from 'react-i18next'
import {
......@@ -21,7 +20,7 @@ interface StepSummaryProperties {
formData: RegisterFormData
}
const StepSummary = forwardRef((props: StepSummaryProperties) => {
function StepSummary(props: StepSummaryProperties) {
const { t } = useTranslation(['common'])
const { formData } = props
const ous = useOus()
......@@ -134,6 +133,6 @@ const StepSummary = forwardRef((props: StepSummaryProperties) => {
</Box>
</>
)
})
}
export default StepSummary
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment