Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
benjackwhite committed Jan 26, 2024
1 parent 53032f4 commit 9df53c4
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ export function EditSubscription({
dashboardId,
})

const { members, membersLoading } = useValues(membersLogic)
const { meFirstMembers, membersLoading } = useValues(membersLogic)
const { subscription, subscriptionLoading, isSubscriptionSubmitting, subscriptionChanged, isMemberOfSlackChannel } =
useValues(logic)
const { preflight, siteUrlMisconfigured } = useValues(preflightLogic)
Expand Down Expand Up @@ -209,7 +209,7 @@ export function EditSubscription({
disabled={emailDisabled}
mode="multiple-custom"
data-attr="subscribed-emails"
options={usersLemonSelectOptions(members.map((x) => x.user))}
options={usersLemonSelectOptions(meFirstMembers.map((x) => x.user))}
loading={membersLoading}
placeholder="Enter an email address"
/>
Expand Down

0 comments on commit 9df53c4

Please sign in to comment.