Skip to content

Commit

Permalink
[ML] Set acccessDenied default state back to false
Browse files Browse the repository at this point in the history
  • Loading branch information
peteharverson committed Jun 23, 2021
1 parent 5151471 commit b958eef
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ export const JobsListPage: FC<{
}> = ({ coreStart, share, history, spacesApi }) => {
const spacesEnabled = spacesApi !== undefined;
const [initialized, setInitialized] = useState(false);
const [accessDenied, setAccessDenied] = useState(true);
const [accessDenied, setAccessDenied] = useState(false);
const [isPlatinumOrTrialLicense, setIsPlatinumOrTrialLicense] = useState(true);
const [showSyncFlyout, setShowSyncFlyout] = useState(false);
const [isMlEnabledInSpace, setIsMlEnabledInSpace] = useState(false);
Expand Down

0 comments on commit b958eef

Please sign in to comment.