Skip to content

Commit

Permalink
Fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
benjackwhite committed Dec 4, 2024
1 parent 1b06679 commit 1b6db67
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import { NodeKind } from '~/queries/schema'
import { hogql } from '~/queries/utils'

export function SidePanelActivityMetalytics(): JSX.Element {
const { instanceId, viewCount, recentUserMembers, viewCountLoading, usersLast30daysLoading } =
const { instanceId, viewCount, recentUserMembers, viewCountLoading, recentUsersLoading } =
useValues(metalyticsLogic)

if (!instanceId) {
Expand Down Expand Up @@ -51,7 +51,7 @@ export function SidePanelActivityMetalytics(): JSX.Element {
<Tooltip title="The most recent 30 users who have viewed this scene." placement="top">
<div className="flex-1 p-4 border rounded bg-bg-light min-w-40">
<div className="text-sm text-muted">Recent viewers (30 days)</div>
{usersLast30daysLoading ? (
{recentUsersLoading ? (
<Spinner />
) : (
<ProfileBubbles
Expand Down

0 comments on commit 1b6db67

Please sign in to comment.