Skip to content

Commit

Permalink
add back flag (#2759)
Browse files Browse the repository at this point in the history
  • Loading branch information
samoddball authored Aug 13, 2024
1 parent 17aa217 commit 60164da
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 1 deletion.
1 change: 1 addition & 0 deletions src/types/flags.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ export type Flags = {
atoProcessList: boolean;
downgradeGovTeam: boolean;
downgradeTrbAdmin: boolean;
systemIntakeRelatedRequests: boolean;
systemProfileHiddenFields: boolean;
systemWorkspace: boolean;
systemWorkspaceRequestsCard: boolean;
Expand Down
3 changes: 2 additions & 1 deletion src/views/AdditionalInformation/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,8 @@ const AdditionalInformation = ({
</>
)}

{type === 'itgov' && (
{/* flagged for testing - will condense this + the below into one line */}
{flags.systemIntakeRelatedRequests && type === 'itgov' && (
<div className="margin-top-8">
<RelatedRequestsTable requestID={request.id} type={type} />
</div>
Expand Down
1 change: 1 addition & 0 deletions src/views/FlagsWrapper/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ const UserTargetingWrapper = ({ children }: WrapperProps) => {
atoProcessList: false,
downgradeGovTeam: false,
downgradeTrbAdmin: false,
systemIntakeRelatedRequests: false,
systemProfileHiddenFields: false,
systemWorkspace: false,
systemWorkspaceRequestsCard: false,
Expand Down

0 comments on commit 60164da

Please sign in to comment.