Skip to content

Commit 8b4be96

Browse files
committed
refactor(workshops): update imports to use absolute paths
1 parent 73675ae commit 8b4be96

File tree

1 file changed

+10
-11
lines changed

1 file changed

+10
-11
lines changed

src/views/Workshops/Workshops.tsx

Lines changed: 10 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,29 +1,27 @@
11
import React, { FC, useEffect } from "react";
2-
import SectionWrapper from "../../components/SectionWrapper/SectionWrapper";
3-
import { Color } from "../../styles/colors";
2+
import SectionWrapper from "@components/SectionWrapper/SectionWrapper";
3+
import { Color } from "@styles/colors";
44
import {
55
StyledMarginBottom,
66
StyledSpeakersSection,
77
StyledTitleContainer,
88
StyledTitleIcon,
99
StyledWaveContainer,
1010
} from "../Talks/Talks.style";
11-
import LessThanDarkBlueIcon from "../../assets/images/LessThanDarkBlueIcon.svg";
12-
import TitleSection from "../../components/SectionTitle/TitleSection";
13-
import MoreThanBlueIcon from "../../assets/images/MoreThanBlueIcon.svg";
14-
import { useFetchTalks } from "../../hooks/useFetchTalks";
11+
import LessThanDarkBlueIcon from "@assets/images/LessThanDarkBlueIcon.svg";
12+
import TitleSection from "@components/SectionTitle/TitleSection";
13+
import MoreThanBlueIcon from "@assets/images/MoreThanBlueIcon.svg";
14+
import { useFetchTalks } from "@hooks/useFetchTalks";
1515
import { TalkCard } from "../Talks/components/TalkCard";
16-
import conferenceData from "../../data/2025.json";
16+
import conferenceData from "@data/2025.json";
1717
import { styled } from "styled-components";
18-
import { BIG_BREAKPOINT } from "../../constants/BreakPoints";
19-
import { useSentryErrorReport } from "../../hooks/useSentryErrorReport";
18+
import { BIG_BREAKPOINT } from "@constants/BreakPoints";
19+
import { useSentryErrorReport } from "@hooks/useSentryErrorReport";
2020

2121
const StyledSection = styled.section`
22-
{
2322
display: flex;
2423
padding: 0 10rem;
2524
flex-wrap: wrap;
26-
}
2725
2826
@media (max-width: ${BIG_BREAKPOINT}px) {
2927
padding: 1rem;
@@ -103,6 +101,7 @@ const Workshops: FC<React.PropsWithChildren<unknown>> = () => {
103101
key={track.id}
104102
showTrack={true}
105103
year={conferenceData.edition}
104+
openFeedbackId={conferenceData.openFeedbackId}
106105
/>
107106
))
108107
)}

0 commit comments

Comments
 (0)