File tree 7 files changed +14
-141
lines changed
7 files changed +14
-141
lines changed Original file line number Diff line number Diff line change @@ -12,13 +12,13 @@ import {
12
12
StyledTitleIcon ,
13
13
StyledWaveContainer ,
14
14
} from "./Talks.style" ;
15
- import TrackInformation from "./components/TrackInformation" ;
16
15
import { useFetchTalks } from "./UseFetchTalks" ;
17
16
import * as Sentry from "@sentry/react" ;
18
17
import { Dropdown , DropdownChangeEvent } from "primereact/dropdown" ;
19
18
import "primereact/resources/primereact.min.css" ;
20
19
import "primereact/resources/themes/lara-light-indigo/theme.css" ;
21
20
import "../../styles/theme.css" ;
21
+ import TrackInformation from "../../components/Talk/TrackInformation" ;
22
22
23
23
interface TrackInfo {
24
24
name : string ;
Load Diff This file was deleted.
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -13,10 +13,10 @@ import TitleSection from "../../components/SectionTitle/TitleSection";
13
13
import MoreThanBlueIcon from "../../assets/images/MoreThanBlueIcon.svg" ;
14
14
import { useFetchTalks } from "../Talks/UseFetchTalks" ;
15
15
import * as Sentry from "@sentry/react" ;
16
- import { TalkCard } from "../Talks/components/TalkCard" ;
17
16
import conferenceData from "../../data/2023.json" ;
18
17
import styled from "styled-components" ;
19
18
import { BIG_BREAKPOINT } from "../../constants/BreakPoints" ;
19
+ import { TalkCard } from "../../components/Talk/TalkCard" ;
20
20
21
21
const StyledSection = styled . section `
22
22
{
@@ -97,11 +97,10 @@ const Workshops2023: FC<React.PropsWithChildren<unknown>> = () => {
97
97
upcoming announcements
98
98
</ p >
99
99
) }
100
- { workshops ?. map ( ( track , index ) => (
100
+ { workshops ?. map ( ( track ) => (
101
101
< TalkCard
102
102
talk = { track }
103
103
key = { track . id }
104
- index = { index }
105
104
showTrack = { true }
106
105
/>
107
106
) ) }
Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ import {
19
19
StyledTitleIcon ,
20
20
StyledWaveContainer
21
21
} from "../../views/Talks/Talks.style" ;
22
- import TrackInformation from "./ components/TrackInformation" ;
22
+ import TrackInformation from "../../ components/Talk /TrackInformation" ;
23
23
24
24
interface TrackInfo {
25
25
name : string ;
Original file line number Diff line number Diff line change 1
1
import React , { FC } from "react" ;
2
2
import { Link } from "react-router" ;
3
- import { Tag } from "../../../components/ Tag/Tag" ;
3
+ import { Tag } from "../Tag/Tag" ;
4
4
import {
5
5
ROUTE_2024_SPEAKER_DETAIL ,
6
6
ROUTE_2024_TALK_DETAIL ,
7
- } from "../../../ constants/routes" ;
8
- import { Color } from "../../../ styles/colors" ;
9
- import { StyledJobsInfo } from "../../../components/ JobOffers/JobsCard" ;
7
+ } from "../../constants/routes" ;
8
+ import { Color } from "../../styles/colors" ;
9
+ import { StyledJobsInfo } from "../JobOffers/JobsCard" ;
10
10
import {
11
11
StyledSessionCard ,
12
12
StyledSessionText ,
13
13
StyledTagsWrapper ,
14
14
StyledTalkSpeaker ,
15
15
StyledTalkTitle
16
- } from "../../../ views/Talks/Talks.style" ;
17
- import { StyledVoteTalkLink } from "../../../ views/MeetingDetail/MeetingDetail" ;
16
+ } from "../../views/Talks/Talks.style" ;
17
+ import { StyledVoteTalkLink } from "../../views/MeetingDetail/MeetingDetail" ;
18
18
import {
19
19
extractSessionCategoryInfo ,
20
20
extractSessionTags
21
- } from "../../../ services/sessionsAdapter" ;
21
+ } from "../../services/sessionsAdapter" ;
22
22
import {
23
23
CategoryItemEnum ,
24
24
QuestionAnswers ,
25
25
SessionCategory ,
26
26
SessionSpeaker
27
- } from "../../../ types/sessions" ;
27
+ } from "../../types/sessions" ;
28
28
29
29
export interface TalkCardProps {
30
30
talk : {
Original file line number Diff line number Diff line change @@ -3,9 +3,9 @@ import {TalkCard} from "./TalkCard";
3
3
import {
4
4
StyledSessionSection ,
5
5
StyledTrackInfo
6
- } from "../../../ views/Talks/Talks.style" ;
6
+ } from "../../views/Talks/Talks.style" ;
7
7
8
- import { IGroup } from "../../../ types/sessions" ;
8
+ import { IGroup } from "../../types/sessions" ;
9
9
10
10
interface TrackInfoProps {
11
11
track : IGroup ;
You can’t perform that action at this time.
0 commit comments