File tree Expand file tree Collapse file tree 6 files changed +3
-12
lines changed
components/ComponentsProvider
containers/UserSettings/i18n Expand file tree Collapse file tree 6 files changed +3
-12
lines changed Original file line number Diff line number Diff line change @@ -6,15 +6,15 @@ import {StaffCard} from '../User/StaffCard';
66import type { ComponentsRegistryTemplate } from './registry' ;
77import { Registry } from './registry' ;
88
9- const AnyPlaceholder = ( ) => null ;
9+ const EmptyPlaceholder = ( ) => null ;
1010
1111const componentsRegistryInner = new Registry ( )
1212 . register ( 'StaffCard' , StaffCard )
1313 . register ( 'AsideNavigation' , AsideNavigation )
1414 . register ( 'ErrorBoundary' , ErrorBoundaryInner )
1515 . register ( 'ShardsTable' , ShardsTable )
16- . register ( 'AIAssistantButton' , AnyPlaceholder )
17- . register ( 'ChatPanel' , AnyPlaceholder ) ;
16+ . register ( 'AIAssistantButton' , EmptyPlaceholder )
17+ . register ( 'ChatPanel' , EmptyPlaceholder ) ;
1818
1919export type ComponentsRegistry = ComponentsRegistryTemplate < typeof componentsRegistryInner > ;
2020
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1717 "settings.editor.codeAssistant.title" : " Code Assistant" ,
1818 "settings.editor.codeAssistant.description" : " Use Code Assistant for autocomplete." ,
1919
20- "settings.editor.aiAssistant.title" : " AI Assistant" ,
21- "settings.editor.aiAssistant.description" : " Show AI Assistant." ,
22-
2320 "settings.editor.queryStreaming.title" : " Query Streaming" ,
2421 "settings.editor.queryStreaming.description" : " Use streaming api for query results." ,
2522
Original file line number Diff line number Diff line change 77export { AsideNavigation } from './containers/AsideNavigation/AsideNavigation' ;
88
99export { configureStore , rootReducer } from './store' ;
10- export type { ConfigureStoreOptions } from './store' ;
1110export { default as appRoutes } from './routes' ;
1211
1312export { YdbEmbeddedAPI } from './services/api' ;
Original file line number Diff line number Diff line change @@ -4,7 +4,6 @@ const {createProxyMiddleware} = require('http-proxy-middleware');
44module . exports = function ( app ) {
55 const metaYdbBackend = process . env . META_YDB_BACKEND ;
66
7- // Proxy for existing YDB meta backend
87 if ( metaYdbBackend && metaYdbBackend !== 'undefined' ) {
98 app . use (
109 '/meta' ,
Original file line number Diff line number Diff line change @@ -11,4 +11,3 @@ export {
1111export { rootReducer } from './reducers' ;
1212
1313export type { AppDispatch , GetState , RootState } from './defaultStore' ;
14- export type { ConfigureStoreOptions } from './configureStore' ;
You can’t perform that action at this time.
0 commit comments