Skip to content

Commit

Permalink
Remove test code
Browse files Browse the repository at this point in the history
  • Loading branch information
sabarasaba committed Dec 13, 2021
1 parent 2ea3ff4 commit ea367ae
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ interface Props extends OverviewStepProps {
const BackupStep = ({ cloud, setIsComplete }: Omit<Props, 'isComplete'>) => {
const [forceOnPremStep, setForceOnPremStep] = useState(false);

if (!cloud?.isCloudEnabled && !forceOnPremStep) {
if (cloud?.isCloudEnabled && !forceOnPremStep) {
return (
<CloudBackup
setIsComplete={setIsComplete}
Expand Down

0 comments on commit ea367ae

Please sign in to comment.