From f27af2cb134bc4a0b5575e74ea7c41eefe10c6ce Mon Sep 17 00:00:00 2001 From: Sakura Knoll Date: Sun, 2 Jan 2022 11:31:25 +0900 Subject: [PATCH] Fix imaginary icon of type label --- src/components/atoms/TypeLabel.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/atoms/TypeLabel.tsx b/src/components/atoms/TypeLabel.tsx index 46396c61..363b191c 100644 --- a/src/components/atoms/TypeLabel.tsx +++ b/src/components/atoms/TypeLabel.tsx @@ -30,7 +30,7 @@ function isValidType(type: string): boolean { case 'biologic': case 'psychic': case 'quantum': - case 'imginary': + case 'imaginary': return true } return false