1
0
Fork 0

chore: Linter issues

This commit is contained in:
joostdecock 2023-09-04 12:18:52 +02:00
parent cf3f890a95
commit 9d11005c43
30 changed files with 48 additions and 52 deletions

View file

@ -1,5 +1,5 @@
// Dependencies
import { useState } from 'react'
import { useState, useContext } from 'react'
import { useTranslation } from 'next-i18next'
// Context
import { LoadingStatusContext } from 'shared/context/loading-status-context.mjs'
@ -51,7 +51,7 @@ export const useControlState = () => {
export const ControlSettings = ({ welcome = false, noBack = false }) => {
const { t, i18n } = useTranslation(ns)
const { selection, update, LoadingStatus } = useControlState()
const { selection, update } = useControlState()
// Helper to get the link to the next onboarding step
const nextHref = welcome