Skip to content
This repository has been archived by the owner on Jan 3, 2025. It is now read-only.

Commit

Permalink
ran eslint fix
Browse files Browse the repository at this point in the history
  • Loading branch information
FinnIckler committed Oct 22, 2023
1 parent d732d93 commit 0974e87
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@ import { Link } from 'react-router-dom'
import { Checkbox, Popup, Table } from 'semantic-ui-react'
import { CompetitionContext } from '../../../api/helper/context/competition_context'
import { getAllRegistrations } from '../../../api/registration/get/get_registrations'
import { BASE_ROUTE } from '../../../routes'
import { setMessage } from '../../../ui/events/messages'
import LoadingMessage from '../../../ui/messages/loadingMessage'
import styles from './list.module.scss'
import RegistrationActions from './RegistrationActions'
import { BASE_ROUTE } from '../../../routes'

// Currently it is at the developer's discretion to make sure
// an attendee is added to the right list.
Expand Down
2 changes: 1 addition & 1 deletion Frontend/src/ui/Competition.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ import { useNavigate, useParams } from 'react-router-dom'
import { Button, Image } from 'semantic-ui-react'
import getCompetitionInfo from '../api/competition/get/get_competition_info'
import { CompetitionContext } from '../api/helper/context/competition_context'
import { BASE_ROUTE } from '../routes'
import styles from './competition.module.scss'
import LoadingMessage from './messages/loadingMessage'
import { BASE_ROUTE } from '../routes'

export default function Competition({ children }) {
const { competition_id } = useParams()
Expand Down
2 changes: 1 addition & 1 deletion Frontend/src/ui/Tabs.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ import { useLocation, useNavigate } from 'react-router-dom'
import { Menu, Tab } from 'semantic-ui-react'
import { CompetitionContext } from '../api/helper/context/competition_context'
import { PermissionsContext } from '../api/helper/context/permission_context'
import styles from './tabs.module.scss'
import { BASE_ROUTE } from '../routes'
import styles from './tabs.module.scss'

function pathMatch(name, pathname) {
const registerExpression = /\/competitions\/[a-zA-Z0-9]+\/register/
Expand Down

0 comments on commit 0974e87

Please sign in to comment.