diff --git a/server/app/helpers.ts b/server/app/helpers.ts index 4bb6ea3..2937962 100644 --- a/server/app/helpers.ts +++ b/server/app/helpers.ts @@ -128,6 +128,7 @@ export function sortTeamByRole(a: T, b: T) { // https://stackoverflow.com/a/46700791/9188650 export function notEmpty(value: TValue | null | undefined): value is TValue { if (value === null || value === undefined) return false + // @ts-ignore const testDummy: TValue = value return true }