Still got errors and warnings, mostly the same and easy to fix
diff --git a/src/utils/plurals.ts b/src/utils/plurals.ts
index 48b889c..619ced2 100644
--- a/src/utils/plurals.ts
+++ b/src/utils/plurals.ts
@@ -1,7 +1,7 @@
-function addPlural(amount: any, unit: string) {
+function addPlural(amount: number | string, unit: string) {
amount = amount.toString();
- if (amount === '1') return `${amount} ${unit}`
- return `${amount} ${unit}s`
+ if (amount === "1") return `${amount} ${unit}`;
+ return `${amount} ${unit}s`;
}
export default addPlural;
\ No newline at end of file