diff --git a/go.mod b/go.mod
index a9df00b7c6b73bf6a25146e405a1da4d1eb867f8..d019676b2673fa0f5a2080b7af90ef85b4c87684 100644
--- a/go.mod
+++ b/go.mod
@@ -9,7 +9,7 @@ require (
 	github.com/spf13/cobra v1.7.0
 	github.com/spf13/jwalterweatherman v1.1.0
 	github.com/stretchr/testify v1.8.2
-	gitlab.com/elixxir/client/v4 v4.6.4-0.20230608180252-97c80bec3eec
+	gitlab.com/elixxir/client/v4 v4.6.4-0.20230608195010-ff2eeb3e1127
 	gitlab.com/elixxir/crypto v0.0.7-0.20230607170539-92d9508c78f9
 	gitlab.com/elixxir/primitives v0.0.3-0.20230214180039-9a25e2d3969c
 	gitlab.com/elixxir/wasm-utils v0.0.0-20230607204433-22c46f9d680f
diff --git a/go.sum b/go.sum
index 5543c8ea1a04d607f7139266c4732578bd271d2b..7aa263359af0e27f7cb61392ddef8dd348f08e5a 100644
--- a/go.sum
+++ b/go.sum
@@ -523,6 +523,8 @@ gitlab.com/elixxir/client/v4 v4.6.4-0.20230608170359-6f802c11e487 h1:th4mIU968Zu
 gitlab.com/elixxir/client/v4 v4.6.4-0.20230608170359-6f802c11e487/go.mod h1:GyXpu03l8AybmrGSq+AiKTuB+oJI5of78MdvdqFo29U=
 gitlab.com/elixxir/client/v4 v4.6.4-0.20230608180252-97c80bec3eec h1:qwVxyrJfcrPcifvMEO/yn2DUKiB00WCSyby6gS+fzw4=
 gitlab.com/elixxir/client/v4 v4.6.4-0.20230608180252-97c80bec3eec/go.mod h1:GyXpu03l8AybmrGSq+AiKTuB+oJI5of78MdvdqFo29U=
+gitlab.com/elixxir/client/v4 v4.6.4-0.20230608195010-ff2eeb3e1127 h1:n8i9zcYkZwFWcBNo7wB5RsGyXTx7gT4AIqoiSNOlVAs=
+gitlab.com/elixxir/client/v4 v4.6.4-0.20230608195010-ff2eeb3e1127/go.mod h1:GyXpu03l8AybmrGSq+AiKTuB+oJI5of78MdvdqFo29U=
 gitlab.com/elixxir/comms v0.0.4-0.20230519211512-4a998f4b0938 h1:f27+QUFiGWrprKm+fstOg3ABkYLpWcZi3+8Lf5eDnqY=
 gitlab.com/elixxir/comms v0.0.4-0.20230519211512-4a998f4b0938/go.mod h1:z+qW0D9VpY5QKTd7wRlb5SK4kBNqLYsa4DXBcUXue9Q=
 gitlab.com/elixxir/crypto v0.0.7-0.20230607170539-92d9508c78f9 h1:+RZcoU7NOPXCenkKM/ImYyLcNDdG4vsWrJyKqoAAv8k=
diff --git a/wasm/channels.go b/wasm/channels.go
index b3535c9c8be609ab9cf992c8de440797d3ee4723..498a8a083e3d5fe35dabf72550510d09839dea1d 100644
--- a/wasm/channels.go
+++ b/wasm/channels.go
@@ -1710,10 +1710,10 @@ func (cm *ChannelsManager) SetMobileNotificationsLevel(_ js.Value, args []js.Val
 //   - Throws an error if getting the report fails.
 func GetChannelNotificationReportsForMe(_ js.Value, args []js.Value) any {
 	notificationFilterJSON := utils.CopyBytesToGo(args[0])
-	notificationDataJSON := utils.CopyBytesToGo(args[1])
+	notificationDataCSV := args[1].String()
 
 	report, err := bindings.GetChannelNotificationReportsForMe(
-		notificationFilterJSON, notificationDataJSON)
+		notificationFilterJSON, notificationDataCSV)
 	if err != nil {
 		exception.ThrowTrace(err)
 		return nil