fix(landing): success wording

This commit is contained in:
Emir Karabeg
2025-02-16 23:45:22 -08:00
parent 2070281332
commit 1bade9d337
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -136,7 +136,7 @@ export function HeroWorkflow() {
connectionLineType={ConnectionLineType.SmoothStep}
connectionLineStyle={{ stroke: '#94a3b8', strokeWidth: 2 }}
fitView
minZoom={0.8}
minZoom={0.6}
maxZoom={1.3}
defaultViewport={{ x: 0, y: 0, zoom: 1 }}
proOptions={{ hideAttribution: true }}
+1 -1
View File
@@ -47,7 +47,7 @@ export default function WaitlistForm() {
const getButtonText = () => {
if (isSubmitting) return 'Joining...'
if (status === 'success') return 'Success'
if (status === 'success') return 'Joined!'
if (status === 'error') return 'Try again'
return 'Join waitlist'
}