Skip to content

Commit cb4a417

Browse files
committed
fix
1 parent c51941b commit cb4a417

File tree

1 file changed

+9
-2
lines changed

1 file changed

+9
-2
lines changed

src/containers/AppWithClusters/AppWithClusters.tsx

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,18 @@ export interface AppWithClustersProps {
1515
history: History;
1616
userSettings?: YDBEmbeddedUISettings;
1717
children?: React.ReactNode;
18+
appTitle?: string;
1819
}
1920

20-
export function AppWithClusters({store, history, userSettings, children}: AppWithClustersProps) {
21+
export function AppWithClusters({
22+
store,
23+
history,
24+
userSettings,
25+
appTitle,
26+
children,
27+
}: AppWithClustersProps) {
2128
return (
22-
<App store={store} history={history} userSettings={userSettings}>
29+
<App store={store} history={history} userSettings={userSettings} appTitle={appTitle}>
2330
<AppSlots.ClusterSlot>
2431
{({component}) => {
2532
return (

0 commit comments

Comments
 (0)