|
@@ -100,7 +100,7 @@ function useOpenOnboardingSidebar(organization?: Organization) {
|
|
|
|
|
|
useEffect(() => {
|
|
|
if (openOnboardingSidebar) {
|
|
|
- activatePanel(SidebarPanelKey.OnboardingWizard);
|
|
|
+ activatePanel(SidebarPanelKey.ONBOARDING_WIZARD);
|
|
|
}
|
|
|
}, [openOnboardingSidebar]);
|
|
|
}
|
|
@@ -423,19 +423,19 @@ function Sidebar({location, organization}: Props) {
|
|
|
<SidebarSectionGroup>
|
|
|
<PerformanceOnboardingSidebar
|
|
|
currentPanel={activePanel}
|
|
|
- onShowPanel={() => togglePanel(SidebarPanelKey.PerformanceOnboarding)}
|
|
|
+ onShowPanel={() => togglePanel(SidebarPanelKey.PERFORMANCE_ONBOARDING)}
|
|
|
hidePanel={hidePanel}
|
|
|
{...sidebarItemProps}
|
|
|
/>
|
|
|
<ReplaysOnboardingSidebar
|
|
|
currentPanel={activePanel}
|
|
|
- onShowPanel={() => togglePanel(SidebarPanelKey.ReplaysOnboarding)}
|
|
|
+ onShowPanel={() => togglePanel(SidebarPanelKey.REPLAYS_ONBOARDING)}
|
|
|
hidePanel={hidePanel}
|
|
|
{...sidebarItemProps}
|
|
|
/>
|
|
|
<ProfilingOnboardingSidebar
|
|
|
currentPanel={activePanel}
|
|
|
- onShowPanel={() => togglePanel(SidebarPanelKey.ReplaysOnboarding)}
|
|
|
+ onShowPanel={() => togglePanel(SidebarPanelKey.REPLAYS_ONBOARDING)}
|
|
|
hidePanel={hidePanel}
|
|
|
{...sidebarItemProps}
|
|
|
/>
|
|
@@ -443,7 +443,7 @@ function Sidebar({location, organization}: Props) {
|
|
|
<OnboardingStatus
|
|
|
org={organization}
|
|
|
currentPanel={activePanel}
|
|
|
- onShowPanel={() => togglePanel(SidebarPanelKey.OnboardingWizard)}
|
|
|
+ onShowPanel={() => togglePanel(SidebarPanelKey.ONBOARDING_WIZARD)}
|
|
|
hidePanel={hidePanel}
|
|
|
{...sidebarItemProps}
|
|
|
/>
|
|
@@ -467,7 +467,7 @@ function Sidebar({location, organization}: Props) {
|
|
|
orientation={orientation}
|
|
|
collapsed={collapsed}
|
|
|
currentPanel={activePanel}
|
|
|
- onShowPanel={() => togglePanel(SidebarPanelKey.Broadcasts)}
|
|
|
+ onShowPanel={() => togglePanel(SidebarPanelKey.BROADCASTS)}
|
|
|
hidePanel={hidePanel}
|
|
|
organization={organization}
|
|
|
/>
|
|
@@ -475,7 +475,7 @@ function Sidebar({location, organization}: Props) {
|
|
|
orientation={orientation}
|
|
|
collapsed={collapsed}
|
|
|
currentPanel={activePanel}
|
|
|
- onShowPanel={() => togglePanel(SidebarPanelKey.ServiceIncidents)}
|
|
|
+ onShowPanel={() => togglePanel(SidebarPanelKey.SERVICE_INCIDENTS)}
|
|
|
hidePanel={hidePanel}
|
|
|
/>
|
|
|
</SidebarSection>
|