sendou.ink/app/utils/i18next.ts
Kalle cfbd18b4fe Object Damage Calc: Separate subs in the combobox Closes #1220
Also due to a bug the subs were not accessible at all before.
This was a bug introduced in c014ba5e18
2023-04-15 12:06:07 +03:00

8 lines
201 B
TypeScript

import type { DamageType } from "~/features/build-analyzer";
export const damageTypeTranslationString = ({
damageType,
}: {
damageType: DamageType;
}) => `analyzer:damage.${damageType}` as const;