Skip to content

Commit

Permalink
Fix up things
Browse files Browse the repository at this point in the history
  • Loading branch information
benjackwhite committed Oct 26, 2023
1 parent 8380a79 commit 88e7377
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -137,6 +137,7 @@ const dataManagementSceneLogic = kea<dataManagementSceneLogicType>({
return [
{
name: `Data Management`,
path: tabs.events.url,
},
{
name: capitalizeFirstLetter(tab),
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { kea, connect, path, selectors, events } from 'kea'
import { kea, connect, path, selectors, afterMount } from 'kea'
import { loaders } from 'kea-loaders'
import { Breadcrumb } from '~/types'
import { urls } from 'scenes/urls'
Expand Down Expand Up @@ -82,10 +82,7 @@ export const ingestionWarningsLogic = kea<ingestionWarningsLogicType>([
},
],
}),

events(({ actions }) => ({
afterMount: () => {
actions.loadData()
},
})),
afterMount(({ actions }) => {
actions.loadData()
}),
])

0 comments on commit 88e7377

Please sign in to comment.