Skip to content

Commit

Permalink
style(frontend): show debug panel for all visitors
Browse files Browse the repository at this point in the history
  • Loading branch information
634750802 authored Oct 8, 2024
1 parent 3b026e6 commit ed23edc
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ export function ConversationMessageGroups ({ groups }: { groups: ChatMessageGrou

function ConversationMessageGroup ({ group }: { group: ChatMessageGroup }) {
const { me } = useAuth();
const enableDebug = !!me && !process.env.NEXT_PUBLIC_DISABLE_DEBUG_PANEL;
const enableDebug = /* !!me && */ !process.env.NEXT_PUBLIC_DISABLE_DEBUG_PANEL;

const [debugInfoOpen, setDebugInfoOpen] = useState(false);
const [highlight, setHighlight] = useState(false);
Expand Down

0 comments on commit ed23edc

Please sign in to comment.