fix(client): fix issues raised through lgtm alerts

This commit is contained in:
Amruth Pillai
2022-03-12 18:56:00 +01:00
parent ef06240935
commit dfccb3130f
9 changed files with 17 additions and 17 deletions

View File

@ -1,8 +1,8 @@
import { Testimony } from '@/data/testimonials';
import { Testimony as TestimonyType } from '@/data/testimonials';
import styles from './Testimony.module.scss';
type Props = Testimony;
type Props = TestimonyType;
const Testimony: React.FC<Props> = ({ name, message }) => {
return (