Skip to content

Commit 3e6f1ee

Browse files
committed
🐛 use string enum for pubsub contacts state
1 parent 202bb18 commit 3e6f1ee

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/models/pubsub-contacts-message.model.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
import { Contact } from "./contact.model";
22

33
export enum PubSubContactsState {
4-
"IN_PROGRESS",
5-
"COMPLETE",
4+
IN_PROGRESS = "IN_PROGRESS",
5+
COMPLETE = "COMPLETE",
66
}
77

88
export type PubSubContactsMessage = {

0 commit comments

Comments
 (0)