Work on reworked season page

This commit is contained in:
Aleksi Lassila
2023-08-03 16:48:13 +03:00
parent 4646883dff
commit a50ea33f1b
11 changed files with 168 additions and 63 deletions

View File

@@ -75,7 +75,7 @@ export const getFadeIndex = () => {
return obj;
};
export function log(arg: any) {
export function log<T>(arg: T): T {
console.log('LOGGER', arg);
return arg;
}