Skip to content

Commit

Permalink
fix: formtribe page should only be shown in light mode (formbricks#854)
Browse files Browse the repository at this point in the history
  • Loading branch information
mattinannt committed Sep 26, 2023
1 parent 142717e commit 73cf431
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions apps/formbricks-com/pages/formtribe/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ import Mac from "@/images/formtribe/package.jpeg";
import Pandey from "@/images/formtribe/pandeyman.jpeg";
import Shubham from "@/images/formtribe/shubham.jpeg";
import Timeline from "@/images/formtribe/timeline.png";
import { useEffect } from "react";

const HowTo = [
{
Expand Down Expand Up @@ -212,6 +213,10 @@ const FAQ = [
];

export default function FormTribeHackathon() {
// dark mode fix
useEffect(() => {
document.documentElement.classList.remove("dark");
}, []);
return (
<LayoutLight
title="FormbTribe Hackathon"
Expand Down

0 comments on commit 73cf431

Please sign in to comment.