Skip to content

Commit

Permalink
Issue #PS-000 feat: Fixed lint issues
Browse files Browse the repository at this point in the history
  • Loading branch information
itsvick committed Aug 2, 2024
1 parent da043ef commit 546d20f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/pages/user-profile/[userId].tsx
Original file line number Diff line number Diff line change
Expand Up @@ -612,7 +612,7 @@ const TeacherProfile = () => {
{filteredSortedForView?.map((item, index) => {
if (String(item.order) === '7') {
return (
<Grid item xs={12}>
<Grid item xs={12} key={index}>
<Typography
fontSize={'12px'}
fontWeight={'600'}
Expand All @@ -633,7 +633,7 @@ const TeacherProfile = () => {
}}
>
{orderedSubjects &&
orderedSubjects?.map((subject, index) => (
orderedSubjects?.map((subject: any, index: number) => (
<Button
key={index}
size="small"
Expand Down

0 comments on commit 546d20f

Please sign in to comment.