Skip to content

Commit

Permalink
reformat
Browse files Browse the repository at this point in the history
  • Loading branch information
paula-stacho committed Feb 27, 2024
1 parent 906985e commit a562ced
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion packages/oidc-http-server-pages/src/get-static-page.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
import type { ITemplate, HttpServerPage, PageTemplates } from './types';

function findTemplate(templates: ITemplate[], parameterKeys: string[]): ITemplate | undefined {
function findTemplate(
templates: ITemplate[],
parameterKeys: string[]
): ITemplate | undefined {
const parametersJoined = parameterKeys.sort().join('-');
for (const template of templates) {
const templateParametersJoined = Object.keys(template.parameters)
Expand Down

0 comments on commit a562ced

Please sign in to comment.