|
1 | 1 | import React, { FC, useEffect, useState } from "react"; |
2 | | -import LessThanDarkBlueIcon from "../../assets/images/LessThanDarkBlueIcon.svg"; |
3 | | -import MoreThanBlueIcon from "../../assets/images/MoreThanBlueIcon.svg"; |
4 | | -import SectionWrapper from "../../components/SectionWrapper/SectionWrapper"; |
5 | | -import TitleSection from "../../components/SectionTitle/TitleSection"; |
6 | | -import { Color } from "../../styles/colors"; |
7 | | -import conferenceData from "../../data/2024.json"; |
| 2 | +import LessThanDarkBlueIcon from "@assets/images/LessThanDarkBlueIcon.svg"; |
| 3 | +import MoreThanBlueIcon from "@assets/images/MoreThanBlueIcon.svg"; |
| 4 | +import SectionWrapper from "@components/SectionWrapper/SectionWrapper"; |
| 5 | +import TitleSection from "@components/SectionTitle/TitleSection"; |
| 6 | +import { Color } from "@styles/colors"; |
| 7 | +import conferenceData from "@data/2024.json"; |
8 | 8 |
|
9 | | -import { useFetchTalks } from "../../hooks/useFetchTalks"; |
| 9 | +import { useFetchTalks } from "@hooks/useFetchTalks"; |
10 | 10 | import { Dropdown, DropdownChangeEvent } from "primereact/dropdown"; |
11 | 11 | import "primereact/resources/primereact.min.css"; |
12 | 12 | import "primereact/resources/themes/lara-light-indigo/theme.css"; |
13 | | -import "../../styles/theme.css"; |
| 13 | +import "@styles/theme.css"; |
14 | 14 | import { |
15 | 15 | StyledMarginBottom, |
16 | 16 | StyledSpeakersSection, |
17 | 17 | StyledTitleContainer, |
18 | 18 | StyledTitleIcon, |
19 | 19 | StyledWaveContainer, |
20 | | -} from "../../views/Talks/Talks.style"; |
21 | | -import TrackInformation from "../../components/common/TrackInformation"; |
22 | | -import { useSentryErrorReport } from "../../hooks/useSentryErrorReport"; |
| 20 | +} from "@views/Talks/Talks.style"; |
| 21 | +import TrackInformation from "@components/common/TrackInformation"; |
| 22 | +import { useSentryErrorReport } from "@hooks/useSentryErrorReport"; |
23 | 23 |
|
24 | 24 | interface TrackInfo { |
25 | 25 | name: string; |
@@ -52,7 +52,7 @@ const Talks2024: FC<React.PropsWithChildren<unknown>> = () => { |
52 | 52 |
|
53 | 53 | // Helper function to remove text between parentheses |
54 | 54 | const removeParenthesesContent = (text: string): string => { |
55 | | - return text.replace(/\s*\([^)]*\)/g, ''); |
| 55 | + return text.replace(/\s*\([^)]*\)/g, ""); |
56 | 56 | }; |
57 | 57 |
|
58 | 58 | const dropDownOptions = [ |
@@ -135,6 +135,7 @@ const Talks2024: FC<React.PropsWithChildren<unknown>> = () => { |
135 | 135 | key={track.groupId} |
136 | 136 | track={track} |
137 | 137 | year={conferenceData.edition} |
| 138 | + openFeedbackId={conferenceData.openFeedbackId} |
138 | 139 | /> |
139 | 140 | ))} |
140 | 141 | </> |
|
0 commit comments