Skip to content

Commit

Permalink
fix: sonarcloud issues
Browse files Browse the repository at this point in the history
  • Loading branch information
aswathy-deriv committed Mar 6, 2024
1 parent 36e7a0c commit b660c11
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/features/hooks/use-residence-list/index.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { useEffect, useMemo, useState } from 'react'
import { useEffect, useMemo } from 'react'
import useWS from 'components/hooks/useWS'

export type ResidenceType = {
Expand Down
4 changes: 2 additions & 2 deletions src/features/pages/academy-complete/pop-up-menu.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import React, { useState } from 'react'
import styled from 'styled-components'
import ResidenceForm from './residence-form'
import PasswordForm from './password/password-form'
import PasswordForm from './password/academy-password-form'
import device from 'themes/device'
import { useResidenceList } from 'features/hooks/use-residence-list'

Expand Down Expand Up @@ -53,7 +53,7 @@ const PopUpMenu = () => {
<ModalCard>
{!is_password && (
<ResidenceForm
residence_list={residence_list && residence_list}
residence_list={residence_list}
handleNext={() => setIsPassword(true)}
selected_value={selected_value}
setSelectedValue={setSelectedValue}
Expand Down

0 comments on commit b660c11

Please sign in to comment.