mirror of
https://github.com/maxdorninger/MediaManager.git
synced 2026-04-21 16:25:36 +02:00
turns out intellij formats the code before committing which causes the ci/cd checks to fail
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
import type {ParamMatcher} from '@sveltejs/kit';
|
||||
import type { ParamMatcher } from '@sveltejs/kit';
|
||||
|
||||
export const match = ((param: string) => {
|
||||
return Number.isInteger(parseInt(param, 10));
|
||||
return Number.isInteger(parseInt(param, 10));
|
||||
}) satisfies ParamMatcher;
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
import type {ParamMatcher} from '@sveltejs/kit';
|
||||
import {validate as uuidValidate} from 'uuid';
|
||||
import type { ParamMatcher } from '@sveltejs/kit';
|
||||
import { validate as uuidValidate } from 'uuid';
|
||||
|
||||
export const match = ((param: string) => {
|
||||
return uuidValidate(param);
|
||||
return uuidValidate(param);
|
||||
}) satisfies ParamMatcher;
|
||||
|
||||
Reference in New Issue
Block a user