Fix organization setup flow: redirect to onboarding for incomplete setup

This commit is contained in:
Ra
2025-08-18 10:33:45 -07:00
commit 557b113196
60 changed files with 16246 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
import React from 'react';
import { Field } from './Inputs';
interface QuestionProps { label: string; required?: boolean; description?: string; error?: string; children: React.ReactNode; }
export const Question: React.FC<QuestionProps> = ({ label, required, description, error, children }) => (
<Field label={label} required={required} description={description} error={error}>{children}</Field>
);
export default Question;