src: Remove firstboot flag
Firstboot also seems to be released fully to both stage and prod. The flag is not needed anymore.
This commit is contained in:
parent
f2d11ac3d3
commit
42747a7eeb
4 changed files with 17 additions and 22 deletions
|
|
@ -198,7 +198,6 @@ const Review = () => {
|
|||
);
|
||||
};
|
||||
|
||||
const isFirstBootEnabled = useFlag('image-builder.firstboot.enabled');
|
||||
const isUsersEnabled = useFlag('image-builder.users.enabled');
|
||||
const { isFedoraEnv } = useGetEnvironment();
|
||||
return (
|
||||
|
|
@ -504,23 +503,21 @@ const Review = () => {
|
|||
<ServicesList />
|
||||
</ExpandableSection>
|
||||
)}
|
||||
{isFirstBootEnabled && (
|
||||
<ExpandableSection
|
||||
toggleContent={composeExpandable(
|
||||
'First boot',
|
||||
'revisit-first-boot',
|
||||
'wizard-first-boot'
|
||||
)}
|
||||
onToggle={(_event, isExpandableFirstBoot) =>
|
||||
onToggleFirstBoot(isExpandableFirstBoot)
|
||||
}
|
||||
isExpanded={isExpandableFirstBoot}
|
||||
isIndented
|
||||
data-testid="firstboot-expandable"
|
||||
>
|
||||
<FirstBootList />
|
||||
</ExpandableSection>
|
||||
)}
|
||||
<ExpandableSection
|
||||
toggleContent={composeExpandable(
|
||||
'First boot',
|
||||
'revisit-first-boot',
|
||||
'wizard-first-boot'
|
||||
)}
|
||||
onToggle={(_event, isExpandableFirstBoot) =>
|
||||
onToggleFirstBoot(isExpandableFirstBoot)
|
||||
}
|
||||
isExpanded={isExpandableFirstBoot}
|
||||
isIndented
|
||||
data-testid="firstboot-expandable"
|
||||
>
|
||||
<FirstBootList />
|
||||
</ExpandableSection>
|
||||
{(blueprintName || blueprintDescription) && (
|
||||
<ExpandableSection
|
||||
toggleContent={composeExpandable(
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue