File tree Expand file tree Collapse file tree 1 file changed +5
-1
lines changed
Expand file tree Collapse file tree 1 file changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -10,7 +10,9 @@ import queryString from 'query-string';
1010import cadenceLogoBlack from '@/assets/cadence-logo-black.svg' ;
1111import ErrorBoundary from '@/components/error-boundary/error-boundary' ;
1212import PageSection from '@/components/page-section/page-section' ;
13+ import { type PageQueryParamSetterValues } from '@/hooks/use-page-query-params/use-page-query-params.types' ;
1314import useStyletronClasses from '@/hooks/use-styletron-classes' ;
15+ import type domainPageQueryParamsConfig from '@/views/domain-page/config/domain-page-query-params.config' ;
1416
1517import WorkflowPageStatusTag from '../workflow-page-status-tag/workflow-page-status-tag' ;
1618
@@ -48,7 +50,9 @@ export default function WorkflowPageHeader({
4850 url : domainLink + '/workflows' ,
4951 query : {
5052 search : workflowId ,
51- } ,
53+ } satisfies Partial <
54+ PageQueryParamSetterValues < typeof domainPageQueryParamsConfig >
55+ > ,
5256 } ) }
5357 >
5458 { workflowId }
You can’t perform that action at this time.
0 commit comments