defaultケースを追加

This commit is contained in:
iwata 2023-08-01 19:48:44 +09:00
parent 6fc9a2db64
commit a54c33ae63

View File

@ -176,7 +176,6 @@ 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(
@ -196,6 +195,8 @@ export const LicenseOrderHistory: React.FC<LicenseOrderHistoryProps> = (
"orderHistoriesPage.label.orderCanceled"
)
);
default:
return "";
}
})()}
</td>