We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7aa017d commit 7fb481aCopy full SHA for 7fb481a
packages/frontend/src/features/state-report/pdf/ConstatPdf.view.tsx
@@ -27,8 +27,8 @@ export const ViewConstatPdf = () => {
27
);
28
};
29
30
-const View = (props: StateReportPDFDocumentProps) =>
31
- supportsPromiseWithResolvers ? <ModernView {...props} /> : <LegacyView {...props} />;
+const View = (props: StateReportPDFDocumentProps) => <LegacyView {...props} />;
+// supportsPromiseWithResolvers ? <ModernView {...props} /> : <LegacyView {...props} />;
32
33
const ModernView = (props: StateReportPDFDocumentProps) => {
34
const [height, setHeight] = useState(window.innerHeight);
0 commit comments