From bce4d095e16fb33d181b29aa1d3476037c0c873a Mon Sep 17 00:00:00 2001 From: Quentin Gliech Date: Wed, 16 Feb 2022 10:32:20 +0100 Subject: webui: replace React imports --- webui/src/components/Identity/CurrentIdentity.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'webui/src/components/Identity/CurrentIdentity.tsx') diff --git a/webui/src/components/Identity/CurrentIdentity.tsx b/webui/src/components/Identity/CurrentIdentity.tsx index 2d62dcdb..7be2a5f0 100644 --- a/webui/src/components/Identity/CurrentIdentity.tsx +++ b/webui/src/components/Identity/CurrentIdentity.tsx @@ -1,4 +1,4 @@ -import React from 'react'; +import { useState, useRef } from 'react'; import { Link as RouterLink } from 'react-router-dom'; import { @@ -37,8 +37,8 @@ const CurrentIdentity = () => { const classes = useStyles(); const { loading, error, data } = useCurrentIdentityQuery(); - const [open, setOpen] = React.useState(false); - const anchorRef = React.useRef(null); + const [open, setOpen] = useState(false); + const anchorRef = useRef(null); if (error || loading || !data?.repository?.userIdentity) return null; -- cgit