File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ import * as RemoteConfigTarget from "./remoteconfig";
18
18
import * as ExtensionsTarget from "./extensions" ;
19
19
import * as DataConnectTarget from "./dataconnect" ;
20
20
import { prepareFrameworks } from "../frameworks" ;
21
- import { Context , HostingDeploy } from "./hosting/context" ;
21
+ import { Context } from "./hosting/context" ;
22
22
import { addPinnedFunctionsToOnlyString , hasPinnedFunctions } from "./hosting/prepare" ;
23
23
import { isRunningInGithubAction } from "../init/features/hosting/github" ;
24
24
import { TARGET_PERMISSIONS } from "../commands/deploy" ;
@@ -164,7 +164,7 @@ export const deploy = async function (
164
164
const deployedHosting = includes ( targetNames , "hosting" ) ;
165
165
logger . info ( bold ( "Project Console:" ) , consoleUrl ( options . project ?? "_" , "/overview" ) ) ;
166
166
if ( deployedHosting ) {
167
- each ( context . hosting ?. deploys as HostingDeploy [ ] , ( deploy ) => {
167
+ each ( context . hosting ?. deploys , ( deploy ) => {
168
168
logger . info ( bold ( "Hosting URL:" ) , addSubdomain ( hostingOrigin ( ) , deploy . config . site ) ) ;
169
169
} ) ;
170
170
const versionNames = context . hosting ?. deploys . map ( ( deploy : any ) => deploy . version ) ;
You can’t perform that action at this time.
0 commit comments