@@ -72,7 +72,9 @@ export function GuestOnboardingPanel({
7272 onAuthFieldChange,
7373 onBackToDemo,
7474} : GuestOnboardingPanelProps ) {
75- const [ selectedDemoId , setSelectedDemoId ] = useState < ( typeof DEMO_SOURCES ) [ number ] [ 'id' ] > ( DEMO_SOURCES [ 0 ] . id ) ;
75+ const [ selectedDemoId , setSelectedDemoId ] = useState < ( typeof DEMO_SOURCES ) [ number ] [ 'id' ] > (
76+ DEMO_SOURCES [ 0 ] . id
77+ ) ;
7678 const selectedDemo = DEMO_SOURCES . find ( ( source ) => source . id === selectedDemoId ) ?? DEMO_SOURCES [ 0 ] ;
7779
7880 return (
@@ -84,7 +86,8 @@ export function GuestOnboardingPanel({
8486 </ div >
8587 < div class = "stack stack--lg" >
8688 < p class = "muted-copy" >
87- The guest path is for quick verification. Operator mode unlocks arbitrary URLs and strategy selection.
89+ The guest path is for quick verification. Operator mode unlocks arbitrary URLs and strategy
90+ selection.
8891 </ p >
8992 < div class = "metric-strip" aria-label = "guest capabilities" >
9093 < div class = "metric-tile" >
@@ -257,11 +260,11 @@ export function MemberConvertPanel({
257260 return (
258261 < section class = "state-layout state-layout--member" >
259262 < form class = "surface surface--main form-shell" onSubmit = { onFeedSubmit } >
260- < div class = "surface__header surface__header--row" >
261- < div >
262- < p class = "eyebrow" > operator workspace</ p >
263- < h2 > Convert a website</ h2 >
264- </ div >
263+ < div class = "surface__header surface__header--row" >
264+ < div >
265+ < p class = "eyebrow" > operator workspace</ p >
266+ < h2 > Convert a website</ h2 >
267+ </ div >
265268 < div class = "surface__toolbar" >
266269 < span class = "surface__operator" >
267270 operator:< span class = "surface__operator-name" > { username } </ span >
@@ -300,14 +303,15 @@ export function MemberConvertPanel({
300303 disabled = { strategiesLoading }
301304 onChange = { ( event ) => onFeedFieldChange ( 'strategy' , ( event . target as HTMLSelectElement ) . value ) }
302305 >
303- { strategiesLoading
304- ? < option value = "" > Loading…</ option >
305- : strategies . map ( ( strategy ) => (
306- < option key = { strategy . id } value = { strategy . id } >
307- { strategy . display_name }
308- </ option >
309- ) )
310- }
306+ { strategiesLoading ? (
307+ < option value = "" > Loading…</ option >
308+ ) : (
309+ strategies . map ( ( strategy ) => (
310+ < option key = { strategy . id } value = { strategy . id } >
311+ { strategy . display_name }
312+ </ option >
313+ ) )
314+ ) }
311315 </ select >
312316 < span class = "field-help" >
313317 { strategiesError
0 commit comments