Skip to content

Commit c13c5f2

Browse files
committed
1 parent d0844b3 commit c13c5f2

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

contacts/src/components/open-address-book/open-address-book.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ export class OpenAddressBook {
3131

3232
disconnectedCallback() {
3333
this.disconnected$.next();
34-
this.disconnected$.unsubscribe();
34+
this.disconnected$.complete();
3535
}
3636

3737
@Listen('pod-os:link')

elements/src/components/pos-app/pos-app.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ export class PosApp {
8484
disconnectedCallback() {
8585
this.unsubscribeSettings();
8686
this.disconnected$.next();
87-
this.disconnected$.unsubscribe();
87+
this.disconnected$.complete();
8888
}
8989

9090
@Listen('pod-os:init')

elements/src/components/pos-container-contents/pos-container-contents.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,6 +84,6 @@ export class PosContainerContents implements ResourceAware {
8484

8585
disconnectedCallback() {
8686
this.disconnected$.next();
87-
this.disconnected$.unsubscribe();
87+
this.disconnected$.complete();
8888
}
8989
}

elements/src/components/pos-list/pos-list.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,6 +70,6 @@ export class PosList implements PodOsAware, ResourceAware {
7070

7171
disconnectedCallback() {
7272
this.disconnected$.next();
73-
this.disconnected$.unsubscribe();
73+
this.disconnected$.complete();
7474
}
7575
}

elements/src/components/pos-markdown-document/pos-markdown-document.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ export class PosMarkdownDocument {
8383

8484
disconnectedCallback() {
8585
this.disconnected$.next();
86-
this.disconnected$.unsubscribe();
86+
this.disconnected$.complete();
8787
}
8888

8989
/**

elements/src/components/pos-switch/pos-switch.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,6 +108,6 @@ export class PosSwitch implements ResourceAware {
108108

109109
disconnectedCallback() {
110110
this.disconnected$.next();
111-
this.disconnected$.unsubscribe();
111+
this.disconnected$.complete();
112112
}
113113
}

0 commit comments

Comments
 (0)