[feature-136] Add default image + fix not get local platforms + Add temp icon in nav bar + some style adjustements

This commit is contained in:
MathieuG-P
2023-05-04 00:08:52 +02:00
parent d7d3c980cb
commit d1dc7bbca0
8 changed files with 75 additions and 45 deletions
-6
View File
@@ -127,12 +127,6 @@ export async function copyDirectoryWithJunctions(src: string, dest: string, opti
}
}
export function extname(filePath: string, withDot = true){
const ext = path.extname(filePath);
if(withDot){ return ext; }
return ext.split('.').at(-1);
}
export interface Progression<T = unknown>{
total: number;
current: number;