Skip to content

Profiles app -> dev #848

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
Jul 28, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@ import styles from './AssemblyDetailsModal.module.scss'
type SRMViewTypes = 'STATISTICS' | 'CHALLENGES DETAILS'

interface AssemblyDetailsModalProps {
isAssemblyDetailsOpen: boolean
onClose: () => void
assemblyStats: MemberStats | undefined
profile: UserProfile | undefined
Expand Down Expand Up @@ -86,7 +85,7 @@ const AssemblyDetailsModal: FC<AssemblyDetailsModalProps> = (props: AssemblyDeta
return (
<BaseModal
onClose={props.onClose}
open={props.isAssemblyDetailsOpen}
open
size='body'
title='ASSEMBLY COMPETITION'
>
Expand Down

This file was deleted.

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ import styles from './BugHuntDetailsModal.module.scss'
type BugHuntViewTypes = 'CHALLENGES DETAILS'

interface BugHuntDetailsModalProps {
isBugHuntDetailsOpen: boolean
onClose: () => void
bugHuntStats: MemberStats | undefined
}
Expand All @@ -27,7 +26,7 @@ const BugHuntDetailsModal: FC<BugHuntDetailsModalProps> = (props: BugHuntDetails
return (
<BaseModal
onClose={props.onClose}
open={props.isBugHuntDetailsOpen}
open
size='body'
title='BUG HUNT'
>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@ import styles from './CodeDetailsModal.module.scss'
type CodeViewTypes = 'STATISTICS' | 'CHALLENGES DETAILS'

interface CodeDetailsModalProps {
isCodeDetailsOpen: boolean
onClose: () => void
codeStats: MemberStats | undefined
profile: UserProfile | undefined
Expand Down Expand Up @@ -83,7 +82,7 @@ const CodeDetailsModal: FC<CodeDetailsModalProps> = (props: CodeDetailsModalProp
return (
<BaseModal
onClose={props.onClose}
open={props.isCodeDetailsOpen}
open
size='body'
title='Code'
>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@ import styles from './ContentCreationDetailsModal.module.scss'
type TestScenViewTypes = 'STATISTICS' | 'CHALLENGES DETAILS'

interface ContentCreationDetailsModalProps {
isContentCreationDetailsOpen: boolean
onClose: () => void
contentCreationStats: MemberStats | undefined
profile: UserProfile | undefined
Expand Down Expand Up @@ -84,7 +83,7 @@ const ContentCreationDetailsModal: FC<ContentCreationDetailsModalProps> = (props
return (
<BaseModal
onClose={props.onClose}
open={props.isContentCreationDetailsOpen}
open
size='body'
title='CONTENT CREATION'
>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,14 @@ import { UserStats } from '~/libs/core'
import styles from './CopilotDetailsModal.module.scss'

interface CopilotDetailsModalProps {
isCopilotDetailsOpen: boolean
onClose: () => void
copilotDetails: UserStats['COPILOT']
}

const CopilotDetailsModal: FC<CopilotDetailsModalProps> = (props: CopilotDetailsModalProps) => (
<BaseModal
onClose={props.onClose}
open={props.isCopilotDetailsOpen}
open
size='lg'
title='COPILOT'
>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ import styles from './DesignF2FDetailsModal.module.scss'
type WebDesignViewTypes = 'CHALLENGES DETAILS'

interface DesignF2FDetailsModalProps {
isDesignF2FDetailsOpen: boolean
onClose: () => void
designF2FStats: MemberStats | undefined
}
Expand All @@ -27,7 +26,7 @@ const DesignF2FDetailsModal: FC<DesignF2FDetailsModalProps> = (props: DesignF2FD
return (
<BaseModal
onClose={props.onClose}
open={props.isDesignF2FDetailsOpen}
open
size='body'
title='DESIGN FIRST2FINISH'
>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ import styles from './F2FDetailsModal.module.scss'
type BugHuntViewTypes = 'CHALLENGES DETAILS'

interface F2FDetailsModalProps {
isF2FDetailsOpen: boolean
onClose: () => void
f2fStats: MemberStats | undefined
}
Expand All @@ -27,7 +26,7 @@ const F2FDetailsModal: FC<F2FDetailsModalProps> = (props: F2FDetailsModalProps)
return (
<BaseModal
onClose={props.onClose}
open={props.isF2FDetailsOpen}
open
size='body'
title='FIRST2FINISH'
>
Expand Down

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

Loading