Skip to content

Commit

Permalink
remove socialproof flag
Browse files Browse the repository at this point in the history
  • Loading branch information
MarconLP committed Apr 7, 2024
1 parent 639b2e8 commit 963dfe1
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions src/pages/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@ const Home: NextPage = () => {
const posthog = usePostHog();
const session = useSession();
const router = useRouter();
const socialProofEnabled = useFeatureFlagEnabled("social-proof-section");

useEffect(() => {
if (session.status === "authenticated" && !recordModalOpen) {
Expand Down Expand Up @@ -112,9 +111,7 @@ const Home: NextPage = () => {
</div>

<div
className={`flex w-full items-center justify-center border-t pt-6 ${
socialProofEnabled ? "flex" : "flex"
}`}
className={`flex w-full items-center justify-center border-t pt-6 flex`}
>
<div className="flex max-w-2xl flex-1 flex-col items-center justify-between gap-y-10 py-4 lg:h-[140px] lg:flex-row">
{[
Expand Down

0 comments on commit 963dfe1

Please sign in to comment.