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 app/(main-layout)/terms/components/LegalDocuments.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { useState } from 'react'
import { cn } from '@/lib/utils'
import { Button } from '@/components/ui/button'
import { ScrollArea } from '@/components/ui/scroll-area'
import legalContent from '@/app/(with-navbar)/terms/components/legal-content.json'
import legalContent from '@/app/(main-layout)/terms/components/legal-content.json'

export function LegalDocuments() {
const [activeDocument, setActiveDocument] = useState<'terms' | 'privacy'>('terms')
Expand Down
2 changes: 1 addition & 1 deletion app/(setup-layout)/first-steps/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ import { useAuthUser } from '@/hooks/auth/useAuthUser'
import { v4 as uuidv4 } from 'uuid'
import { routes } from '@/utils/routes'
import { useApiKeyEncryption } from '@/app/(setup-layout)/first-steps/hooks/useApiKeyEncryption'
import sellingOptions from '@/app/(without-navbar)/first-steps/data/selling-options.json'
import sellingOptions from '@/app/(setup-layout)/first-steps/data/selling-options.json'

export default function FirstStepsPage() {
const [step, setStep] = useState(1)
Expand Down
1 change: 0 additions & 1 deletion utils/ConfigureAmplify.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
'use client'

import { Amplify } from 'aws-amplify'

import outputs from '@/amplify_outputs.json'

Amplify.configure(outputs, { ssr: true })
Expand Down