Skip to content

Commit

Permalink
[JN-1559] fix extract loading forever (#1371)
Browse files Browse the repository at this point in the history
  • Loading branch information
connorlbark authored Jan 8, 2025
1 parent db420e8 commit 71f5b45
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ui-admin/src/populate/ExtractPortal.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import { Store } from 'react-notifications-component'
/** control for downloading portal configs as a zip file */
export default function ExtractPortal({ initialPortalShortcode }: {initialPortalShortcode: string}) {
const [portalShortcode, setPortalShortcode] = useState(initialPortalShortcode)
const [isLoading, setIsLoading] = useState(true)
const [isLoading, setIsLoading] = useState(false)

const [onlyExtractActiveVersions, setOnlyExtractActiveVersions] = useState(false)

Expand Down

0 comments on commit 71f5b45

Please sign in to comment.