Skip to content

Commit c1cfcb3

Browse files
committed
chore: do no export function that is only used internally - fixes a knip error
1 parent 651612d commit c1cfcb3

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

‎app/browse/lib/params.ts‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ export const extractParamFromPath = (path: string, param: string) => {
108108
return path.match(new RegExp(`[&?]${param}=(.*?)(&|$)`));
109109
};
110110

111-
export const isOdsIframe = (query: ParsedUrlQuery) => {
111+
const isOdsIframe = (query: ParsedUrlQuery) => {
112112
return query["odsiframe"] === "true";
113113
};
114114

0 commit comments

Comments
 (0)