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": case "5449016a4bdc2d6f028b456f":
return "RUB"; return "RUB";
default: default:
return ""; return "";
} }
@ -216,12 +215,9 @@ export class RagfairHelper
{ {
case Money.EUROS: case Money.EUROS:
return "€"; return "€";
case Money.DOLLARS: case Money.DOLLARS:
return "$"; return "$";
default: // Money.ROUBLES
case Money.ROUBLES:
default:
return "₽"; return "₽";
} }
} }