Skip to content
Open
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions ts/features/fci/screens/valid/FciQtspClausesScreen.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ import {
fciQtspPrivacyTextSelector,
fciQtspPrivacyUrlSelector
} from "../../store/reducers/fciQtspClauses";
import { useHeaderSecondLevel } from "../../../../hooks/useHeaderSecondLevel";

const FciQtspClausesScreen = () => {
const dispatch = useIODispatch();
Expand Down Expand Up @@ -84,6 +85,12 @@ const FciQtspClausesScreen = () => {
});
};

useHeaderSecondLevel({
title: "",
supportRequest: true,
contextualHelp: emptyContextualHelp
});

Copy link
Contributor

@Ladirico Ladirico Feb 12, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

In this case, this logic is not needed here. We don't usually show the header in error screens, for this reason, the header is not present in the figma. Tt would make sense to only insert options={{ headerShown: false }} inside the navigator (here)

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

addressed here 47c1e96

if (fciPollFilledDocumentError && !isPollFilledDocumentReady) {
return (
<SignatureStatusComponent
Expand Down
Loading