Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 | import { useNavigate } from "react-router-dom"; interface Props { isOnSettingsPage: boolean; onDismissOnSettings: () => void; } export function OnboardingModal({ isOnSettingsPage, onDismissOnSettings }: Props) { const navigate = useNavigate(); return ( <div className="modal-backdrop"> <div className="modal-card modal-card--confirm" onClick={(e) => e.stopPropagation()} > <div className="modal-card__header"> <h2 className="modal-card__title">Setup Required</h2> </div> <div className="confirm-modal"> <div className="confirm-modal__body"> {isOnSettingsPage ? "No model profiles are configured yet. Add a provider below, then create a model profile to get started." : "No model profiles are configured yet. You need to add at least one provider and model profile before you can use the app."} </div> <div className="confirm-modal__actions"> {isOnSettingsPage ? ( <button type="button" className="btn btn--primary" onClick={onDismissOnSettings} > Configure below </button> ) : ( <button type="button" className="btn btn--primary" onClick={() => { void navigate("/settings"); }} > Go to Settings </button> )} </div> </div> </div> </div> ); } |