Skip to content

Commit

Permalink
Add GlobalConfigProps into the search header entry
Browse files Browse the repository at this point in the history
Because the app should expect it - like every other app, because it's
a global config.
  • Loading branch information
Adamik10 committed Mar 22, 2024
1 parent ecf7ca9 commit d4c229a
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/apps/search-header/search-header.entry.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ import { withUrls } from "../../core/utils/url";
import SearchHeader from "./search-header";
import GlobalUrlEntryPropsInterface from "../../core/utils/types/global-url-props";
import { GlobalEntryTextProps } from "../../core/storybook/globalTextArgs";
import { GlobalConfigProps } from "../../core/storybook/globalConfigArgs";

export interface SearchHeaderTextProps {
searchHeaderIconAltText?: string;
Expand All @@ -30,6 +31,7 @@ export interface SearchHeaderTextProps {
export interface SearchHeaderEntryProps
extends SearchHeaderTextProps,
GlobalEntryTextProps,
GlobalConfigProps,
GlobalUrlEntryPropsInterface {}

const SearchHeaderEntry: React.FC<SearchHeaderEntryProps> = () => {
Expand Down

0 comments on commit d4c229a

Please sign in to comment.