Revert "defaultケースを追加"

This reverts commit a54c33ae6380a7f433b67f118ffd94dba5cc8bf6.
This commit is contained in:
iwata 2023-08-01 19:56:38 +09:00
parent bacd3f41c2
commit 39a78f3201

View File

@ -176,6 +176,7 @@ export const LicenseOrderHistory: React.FC<LicenseOrderHistoryProps> = (
<td>{x.poNumber}</td>
<td>
{(() => {
// eslint-disable-next-line default-case
switch (x.status) {
case STATUS.ISSUE_REQESTING:
return t(
@ -195,8 +196,6 @@ export const LicenseOrderHistory: React.FC<LicenseOrderHistoryProps> = (
"orderHistoriesPage.label.orderCanceled"
)
);
default:
return "";
}
})()}
</td>