New prittier rule. No trailing commas.

This commit is contained in:
Lucid Kobold
2021-12-29 09:03:35 -06:00
parent c56dbb96d4
commit b44021effa
15 changed files with 118 additions and 115 deletions

View File

@@ -5,7 +5,7 @@ interface FormValidateEmojiProps {
}
const FormValidateEmoji: FC<FormValidateEmojiProps> = ({
type,
type
}: FormValidateEmojiProps) => {
interface Validations {
[key: string]: JSX.Element;
@@ -26,7 +26,7 @@ const FormValidateEmoji: FC<FormValidateEmojiProps> = ({
<span role="img" aria-label="Check">
</span>
),
)
};
return validations[`${type}`];