From c98e2b8650f84e9939e38e95852b1a07fddfa725 Mon Sep 17 00:00:00 2001 From: Ry Racherbaumer Date: Tue, 5 Dec 2023 18:40:18 -0600 Subject: [PATCH] fix: update user preferences topic --- src/utils/topic.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/utils/topic.ts b/src/utils/topic.ts index c2ec6475..98d28006 100644 --- a/src/utils/topic.ts +++ b/src/utils/topic.ts @@ -38,7 +38,7 @@ export const buildUserPrivateStoreTopic = (addrPrefixedKey: string): string => { } export const buildUserPrivatePreferencesTopic = (identifier: string) => - buildContentTopic(`user-preferences-${identifier}`) + buildContentTopic(`userpreferences-${identifier}`) // validate that a topic only contains ASCII characters 33-127 export const isValidTopic = (topic: string): boolean => {