fixed lint/complexity/noUselessSwitchCase

This commit is contained in:
TheSparta 2023-11-01 14:42:45 +00:00
parent f2ef3efdac
commit 98a793229c

View File

@ -54,7 +54,6 @@ export class RagfairHelper
case "5449016a4bdc2d6f028b456f":
return "RUB";
default:
return "";
}
@ -216,13 +215,10 @@ export class RagfairHelper
{
case Money.EUROS:
return "€";
case Money.DOLLARS:
return "$";
case Money.ROUBLES:
default:
default: // Money.ROUBLES
return "₽";
}
}
}
}