File tree Expand file tree Collapse file tree
apps/cli/src/legacy/commands/domains/create Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -9,7 +9,6 @@ const config = {
99 ) ,
1010 customHostname : Flag . string ( "custom-hostname" ) . pipe (
1111 Flag . withDescription ( "The custom hostname to use for your Supabase project." ) ,
12- Flag . optional ,
1312 ) ,
1413} as const ;
1514
Original file line number Diff line number Diff line change @@ -8,7 +8,6 @@ export const legacyDomainsCreate = Effect.fn("legacy.domains.create")(function*
88 const proxy = yield * LegacyGoProxy ;
99 const args : string [ ] = [ "domains" , "create" ] ;
1010 if ( Option . isSome ( flags . projectRef ) ) args . push ( "--project-ref" , flags . projectRef . value ) ;
11- if ( Option . isSome ( flags . customHostname ) )
12- args . push ( "--custom-hostname" , flags . customHostname . value ) ;
11+ args . push ( "--custom-hostname" , flags . customHostname ) ;
1312 yield * proxy . exec ( args ) ;
1413} ) ;
You can’t perform that action at this time.
0 commit comments