@@ -92,14 +92,14 @@ export function ExampleDeployDialog({
9292 // Reset repo name when dialog opens with new example
9393 useEffect ( ( ) => {
9494 if ( isOpen ) {
95- // eslint -disable-next-line react-hooks/set-state-in-effect
95+ // oxlint -disable-next-line react-hooks/set-state-in-effect
9696 setRepoName ( defaultRepoName )
9797 }
9898 } , [ isOpen , defaultRepoName ] )
9999
100100 // Validate and check repo name
101101 useEffect ( ( ) => {
102- // eslint -disable-next-line react-hooks/set-state-in-effect
102+ // oxlint -disable-next-line react-hooks/set-state-in-effect
103103 setRepoNameError ( null )
104104
105105 const validation = validateRepoNameFormat ( repoName )
@@ -116,19 +116,19 @@ export function ExampleDeployDialog({
116116
117117 setRepoNameStatus ( 'checking' )
118118 nameCheckDebouncer . maybeExecute ( repoName )
119- } , [ repoName , auth . hasRepoScope ] ) // eslint -disable-line react-hooks/exhaustive-deps
119+ } , [ repoName , auth . hasRepoScope ] ) // oxlint -disable-line react-hooks/exhaustive-deps
120120
121121 // Refresh auth state when dialog opens
122122 useEffect ( ( ) => {
123123 if ( isOpen ) {
124124 auth . refresh ( )
125125 }
126- } , [ isOpen ] ) // eslint -disable-line react-hooks/exhaustive-deps
126+ } , [ isOpen ] ) // oxlint -disable-line react-hooks/exhaustive-deps
127127
128128 // Check auth state when dialog opens or auth changes
129129 useEffect ( ( ) => {
130130 if ( ! isOpen ) {
131- // eslint -disable-next-line react-hooks/set-state-in-effect
131+ // oxlint -disable-next-line react-hooks/set-state-in-effect
132132 setState ( { step : 'auth-check' } )
133133 setCountdown ( null )
134134 return
@@ -158,7 +158,7 @@ export function ExampleDeployDialog({
158158 if ( state . step !== 'success' || countdown === null ) return
159159
160160 if ( countdown <= 0 ) {
161- // eslint -disable-next-line react-hooks/set-state-in-effect
161+ // oxlint -disable-next-line react-hooks/set-state-in-effect
162162 setCountdown ( null )
163163 const deployUrl = providerInfo . deployUrl ( state . owner , state . repoName )
164164 window . open ( deployUrl , '_blank' )
0 commit comments