Files
backstage/.changeset/brave-mice-cover.md
T
Emma Indal 24d2ce03f3 separation of changesets
Signed-off-by: Emma Indal <emmai@spotify.com>
2021-12-02 09:51:55 +01:00

633 B

@backstage/create-app
@backstage/create-app
minor

Search Modal now relies on the Search Context to access state and state setter. If you use the SidebarSearchModal as described in the getting started documentation, make sure to update your code with the SearchContextProvider.

export const Root = ({ children }: PropsWithChildren<{}>) => (
  <SidebarPage>
    <Sidebar>
      <SidebarLogo />
-     <SidebarSearchModal />
+     <SearchContextProvider>
+       <SidebarSearchModal />
+     </SearchContextProvider>
      <SidebarDivider />
    ...