Specify type of custom scalars

This commit is contained in:
schroda
2024-03-29 00:45:38 +01:00
parent 7990ffda71
commit 511b1f7c5e
6 changed files with 52 additions and 55 deletions
+1 -1
View File
@@ -34,7 +34,7 @@ export const getVersion = (aboutServer: AboutServer) => {
return `${aboutServer.version}-${aboutServer.revision}`;
};
const getBuildTime = (aboutServer: AboutServer) => new Date(aboutServer.buildTime * 1000).toUTCString();
const getBuildTime = (aboutServer: AboutServer) => new Date(Number(aboutServer.buildTime) * 1000).toUTCString();
const getUpdateCheckButtonIcon = (
isLoading: boolean,