File tree Expand file tree Collapse file tree 5 files changed +13
-17
lines changed Expand file tree Collapse file tree 5 files changed +13
-17
lines changed Original file line number Diff line number Diff line change
1
+ ---
2
+ " @firebase/auth " : patch
3
+ " @firebase/database " : patch
4
+ " @firebase/firestore " : patch
5
+ " @firebase/functions " : patch
6
+ " @firebase/storage " : patch
7
+ ---
8
+
9
+ Revert "Fixed scroll behavior (#9043 )"
Original file line number Diff line number Diff line change @@ -18,12 +18,7 @@ import { Auth } from '../../model/public_types';
18
18
import { AuthErrorCode } from '../errors' ;
19
19
import { _assert } from '../util/assert' ;
20
20
import { _castAuth } from './auth_impl' ;
21
- import {
22
- deepEqual ,
23
- isCloudWorkstation ,
24
- pingServer ,
25
- updateEmulatorBanner
26
- } from '@firebase/util' ;
21
+ import { deepEqual , isCloudWorkstation , pingServer } from '@firebase/util' ;
27
22
28
23
/**
29
24
* Changes the {@link Auth} instance to communicate with the Firebase Auth Emulator, instead of production
Original file line number Diff line number Diff line change @@ -31,8 +31,7 @@ import {
31
31
EmulatorMockTokenOptions ,
32
32
getDefaultEmulatorHostnameAndPort ,
33
33
isCloudWorkstation ,
34
- pingServer ,
35
- updateEmulatorBanner
34
+ pingServer
36
35
} from '@firebase/util' ;
37
36
38
37
import { AppCheckTokenProvider } from '../core/AppCheckTokenProvider' ;
@@ -394,7 +393,6 @@ export function connectDatabaseEmulator(
394
393
// Workaround to get cookies in Firebase Studio
395
394
if ( isCloudWorkstation ( host ) ) {
396
395
void pingServer ( host ) ;
397
- updateEmulatorBanner ( 'Database' , true ) ;
398
396
}
399
397
400
398
// Modify the repo to apply emulator settings
Original file line number Diff line number Diff line change @@ -30,11 +30,7 @@ import { Provider } from '@firebase/component';
30
30
import { FirebaseAuthInternalName } from '@firebase/auth-interop-types' ;
31
31
import { MessagingInternalComponentName } from '@firebase/messaging-interop-types' ;
32
32
import { AppCheckInternalComponentName } from '@firebase/app-check-interop-types' ;
33
- import {
34
- isCloudWorkstation ,
35
- pingServer ,
36
- updateEmulatorBanner
37
- } from '@firebase/util' ;
33
+ import { isCloudWorkstation , pingServer } from '@firebase/util' ;
38
34
39
35
export const DEFAULT_REGION = 'us-central1' ;
40
36
@@ -186,7 +182,6 @@ export function connectFunctionsEmulator(
186
182
// Workaround to get cookies in Firebase Studio
187
183
if ( useSsl ) {
188
184
void pingServer ( functionsInstance . emulatorOrigin ) ;
189
- updateEmulatorBanner ( 'Functions' , true ) ;
190
185
}
191
186
}
192
187
Original file line number Diff line number Diff line change @@ -46,8 +46,7 @@ import {
46
46
createMockUserToken ,
47
47
EmulatorMockTokenOptions ,
48
48
isCloudWorkstation ,
49
- pingServer ,
50
- updateEmulatorBanner
49
+ pingServer
51
50
} from '@firebase/util' ;
52
51
import { Connection , ConnectionType } from './implementation/connection' ;
53
52
You can’t perform that action at this time.
0 commit comments