Skip to content

Commit 4205679

Browse files
fix(eng-10262): linter fixes
1 parent 7182269 commit 4205679

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/app/shared/helpers/url-param.helper.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,11 @@ export const urlParam = (params: Record<string, string>) => {
66

77
export const localUrlParam = (params: { service: string; next?: string }): string => {
88
const { service, next } = params;
9-
9+
1010
if (!next) {
1111
return `service=${encodeURIComponent(service)}`;
1212
}
13-
13+
1414
const encodedNext = encodeURIComponent(next);
1515
const valueAfterService = `${service}?next=${encodedNext}`;
1616
return `service=${encodeURIComponent(valueAfterService)}`;

0 commit comments

Comments
 (0)