Skip to content

Commit

Permalink
Merge 956f05a into 80d616c
Browse files Browse the repository at this point in the history
  • Loading branch information
scotthallock authored Apr 26, 2023
2 parents 80d616c + 956f05a commit 3557ba5
Show file tree
Hide file tree
Showing 12 changed files with 19 additions and 11 deletions.
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import React from 'react'
import { Star as StarType } from '../graphql/index'
import { Star as StarType } from '../../graphql/index'
import { Star as StarIcon } from 'react-feather'
import _ from 'lodash'
import styles from '../scss/profileStarComments.module.scss'
import styles from './profileStarComments.module.scss'

type StarCommentsProps = {
stars: StarType[]
Expand Down
1 change: 1 addition & 0 deletions components/ProfileStarComments/index.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export { default } from './ProfileStarComments'
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import React from 'react'
import { Star as StarType } from '../graphql/index'
import { Star as StarType } from '../../graphql/index'
import { Star } from 'react-feather'
import styles from '../scss/profileSubmissions.module.scss'
import { SubmissionStatus as SubmissionStatusEnum } from '../graphql'
import styles from './profileSubmissions.module.scss'
import { SubmissionStatus as SubmissionStatusEnum } from '../../graphql'

type ChallengeStatusProps = {
challengesData: Challenge[]
Expand Down
5 changes: 5 additions & 0 deletions components/ProfileSubmissions/index.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
export {
type LessonChallenge,
SubmissionStatus,
default
} from './ProfileSubmissions'
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import React from 'react'
import { Button } from './theme/Button'
import UserInfoImage from './UserInfoImage'
import { UserInfo } from '../@types/user'
import styles from '../scss/submissionCard.module.scss'
import { Button } from '../theme/Button'
import UserInfoImage from '../UserInfoImage'
import { UserInfo } from '../../@types/user'
import styles from './submissionCard.module.scss'

type Props = {
userId: string
Expand Down
1 change: 1 addition & 0 deletions components/SubmissionCard/index.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export { default } from './SubmissionCard'
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import React from 'react'
import { UserInfo } from '../@types/user'
import { UserInfo } from '../../@types/user'
import Image from 'next/image'
import styles from '../scss/userInfoImage.module.scss'
import styles from './userInfoImage.module.scss'
type UserProps = {
user: UserInfo
className?: string
Expand Down
1 change: 1 addition & 0 deletions components/UserInfoImage/index.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export { DiscordAvatar, default } from './UserInfoImage'
File renamed without changes.

0 comments on commit 3557ba5

Please sign in to comment.