Skip to content
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
2 changes: 1 addition & 1 deletion src/components/session/SessionTracks.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ const SessionTracks: React.FC<SessionTracksProps> = ({sessions, category, curren
return (
<Card className="py-8 px-6 flex flex-col gap-6 md:gap-8">
<Badge variant="alternative" className="flex gap-2"><Speech/> Charlas de {category}</Badge>
<div className="grid grid-cols-[repeat(auto-fit,minmax(300px,1fr))] gap-6 w-full h-full">
<div className="grid md:grid-cols-[repeat(auto-fit,minmax(300px,1fr))] gap-6 w-full h-full">
{
tracks.map(session => (
<article className="flex flex-col gap-y-2 h-full" key={`track-${session.id}`}>
Expand Down
1 change: 0 additions & 1 deletion src/context/AppContext.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,6 @@ export const AppProvider = ({ children }) => {
sessionsInfo,
speakers
);
console.log(getSpeakersWithSessions[0]);
setSpeakers(getSpeakersWithSessions);
setSessions(sessionsInfo);
setAppStatus(AppStatus.Success);
Expand Down
1 change: 0 additions & 1 deletion src/pages/ErrorPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ interface ErrorPageProps {
}

const ErrorPage: React.FC<ErrorPageProps> = ({error}) => {
console.log(error)
return (
<Gradient className="min-h-screen flex flex-col gap-4 items-center justify-center text-center">
<Tree/>
Expand Down