From ae58e973155d630d2deb4e5d99e38ed1e78221c6 Mon Sep 17 00:00:00 2001 From: Nathan Arthur Date: Tue, 30 Sep 2025 11:29:24 -0400 Subject: [PATCH] fix clerk provider usage --- src/App.tsx | 183 ++++++++++++++++++++++++++-------------------------- 1 file changed, 90 insertions(+), 93 deletions(-) diff --git a/src/App.tsx b/src/App.tsx index e953cfc2..ae54b7d6 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -62,105 +62,102 @@ export function App(): JSX.Element { }, [location]); return ( - - - - - - - - - - - - Your payment method has been saved successfully. - - - } - /> - - - - Your payment method could not be saved. Please contact{' '} - - support@taskratchet.com - {' '} - for assistance. - - - } - /> - - - - - } - /> - - } /> - - } - /> - - } - /> - - } - /> - - - - - } - /> - - - - - - - + + + + + + + + + + + Your payment method has been saved successfully. + + + } + /> + + + + Your payment method could not be saved. Please contact{' '} + + support@taskratchet.com + {' '} + for assistance. + + + } + /> + + + + + } + /> + + } /> + + } /> + + } + /> + + } + /> + + + + + } + /> + + + + + + ); } export default function AppWithRouter(): JSX.Element { return ( - + + + ); }