Skip to content

Commit

Permalink
fix(errors): Key logic so display is overridden correctly (#25516)
Browse files Browse the repository at this point in the history
  • Loading branch information
neilkakkar authored Oct 11, 2024
1 parent 8ff686d commit 2ccbab6
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { actions, connect, kea, listeners, path, props, reducers, selectors } from 'kea'
import { actions, connect, kea, key, listeners, path, props, reducers, selectors } from 'kea'
import { loaders } from 'kea-loaders'
import { actionToUrl, router, urlToAction } from 'kea-router'
import api from 'lib/api'
Expand Down Expand Up @@ -37,6 +37,7 @@ export enum ErrorGroupTab {
export const errorTrackingGroupSceneLogic = kea<errorTrackingGroupSceneLogicType>([
path((key) => ['scenes', 'error-tracking', 'errorTrackingGroupSceneLogic', key]),
props({} as ErrorTrackingGroupSceneLogicProps),
key((props) => JSON.stringify(props.fingerprint)),

connect({
values: [errorTrackingLogic, ['dateRange', 'filterTestAccounts', 'filterGroup', 'hasGroupActions']],
Expand Down

0 comments on commit 2ccbab6

Please sign in to comment.