Skip to content

Commit

Permalink
[app] Small logging message fix
Browse files Browse the repository at this point in the history
  • Loading branch information
jits committed Mar 28, 2024
1 parent e8b262f commit f454316
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/src/app/shared/auth/data/auth.store.ts
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ const _AuthStore = signalStore(
@Injectable({ providedIn: 'root' })
export class AuthStore extends _AuthStore {
readonly waitUntilConnected$ = toObservable(this.status).pipe(
tap((status) => logger.log('waitUntilConnected - status =', status)),
tap((status) => logger.log('waitUntilConnected$ - status =', status)),
filter((status) => status === 'connected'),
shareReplay(1),
);
Expand Down

0 comments on commit f454316

Please sign in to comment.