File tree Expand file tree Collapse file tree 2 files changed +0
-18
lines changed Expand file tree Collapse file tree 2 files changed +0
-18
lines changed Original file line number Diff line number Diff line change 107
107
--removed-body-scroll-bar-size : 0 !important ;
108
108
margin-right : 0 !important ;
109
109
}
110
-
111
- /* Prevent layout shift when modals open by maintaining scrollbar width */
112
- html {
113
- scrollbar-gutter : stable;
114
- }
115
110
}
Original file line number Diff line number Diff line change @@ -12,19 +12,6 @@ export type AutofillBuildParameter = {
12
12
source : AutofillSource ;
13
13
} & WorkspaceBuildParameter ;
14
14
15
- // Gets autofill parameters from URL search params
16
- export const getAutofillParameters = (
17
- urlSearchParams : URLSearchParams ,
18
- ) : AutofillBuildParameter [ ] => {
19
- return Array . from ( urlSearchParams . keys ( ) )
20
- . filter ( ( key ) => key . startsWith ( "param." ) )
21
- . map ( ( key ) => {
22
- const name = key . replace ( "param." , "" ) ;
23
- const value = urlSearchParams . get ( key ) ?? "" ;
24
- return { name, value, source : "url" } ;
25
- } ) ;
26
- } ;
27
-
28
15
export const getInitialRichParameterValues = (
29
16
templateParams : TemplateVersionParameter [ ] ,
30
17
autofillParams ?: AutofillBuildParameter [ ] ,
You can’t perform that action at this time.
0 commit comments