chore: fix typo (#1387)

This commit is contained in:
CorrectRoadH 2023-03-20 13:59:53 +08:00 committed by GitHub
parent f3090b115d
commit 63e0716457
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -18,7 +18,7 @@ const ResourcesDashboard = () => {
const resourceStore = useResourceStore();
const resources = resourceStore.state.resources;
const [selectedList, setSelectedList] = useState<Array<ResourceId>>([]);
const [isVisiable, setIsVisiable] = useState<boolean>(false);
const [isVisible, setIsVisible] = useState<boolean>(false);
const [queryText, setQueryText] = useState<string>("");
useEffect(() => {
@ -35,9 +35,9 @@ const ResourcesDashboard = () => {
useEffect(() => {
if (selectedList.length === 0) {
setIsVisiable(false);
setIsVisible(false);
} else {
setIsVisiable(true);
setIsVisible(true);
}
}, [selectedList]);
@ -105,7 +105,7 @@ const ResourcesDashboard = () => {
<ResourceSearchBar setQuery={setQueryText} />
</div>
<div className="w-full flex flex-row justify-end items-center space-x-2 mt-3 z-1">
{isVisiable && (
{isVisible && (
<Button onClick={() => handleDeleteSelectedBtnClick()} color="danger">
<Icon.Trash2 className="w-4 h-auto" />
</Button>