Skip to content

Commit

Permalink
Fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
nchaulet committed Sep 20, 2022
1 parent fa365fb commit 6bc0753
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ export const AssetsPage = ({ packageInfo }: AssetsPanelProps) => {
const [assetSavedObjects, setAssetsSavedObjects] = useState<undefined | AssetSavedObject[]>();
const [fetchError, setFetchError] = useState<undefined | Error>();
const [isLoading, setIsLoading] = useState<boolean>(true);
const [hasPermissionError, setHasPermissionError] = useState<boolean>(true);
const [hasPermissionError, setHasPermissionError] = useState<boolean>(false);

useEffect(() => {
const fetchAssetSavedObjects = async () => {
Expand Down

0 comments on commit 6bc0753

Please sign in to comment.