File tree Expand file tree Collapse file tree 1 file changed +2
-4
lines changed Expand file tree Collapse file tree 1 file changed +2
-4
lines changed Original file line number Diff line number Diff line change @@ -14,19 +14,17 @@ const b = cn('information-popup');
1414export interface InformationPopupProps {
1515 /** The keyboard shortcuts action handler */
1616 onKeyboardShortcutsClick ?: ( ) => void ;
17- /** Class for the component */
18- className ?: string ;
1917}
2018
21- export function InformationPopup ( { onKeyboardShortcutsClick, className } : InformationPopupProps ) {
19+ export function InformationPopup ( { onKeyboardShortcutsClick} : InformationPopupProps ) {
2220 // Get documentation link based on language settings
2321 const getDocumentationLink = ( ) => {
2422 const lang = settingsManager . readUserSettingsValue ( LANGUAGE_KEY , navigator . language ) ;
2523 return lang === 'ru' ? 'https://ydb.tech/docs/ru/' : 'https://ydb.tech/docs/en/' ;
2624 } ;
2725
2826 return (
29- < div className = { b ( 'content' , { } , className ) } >
27+ < div className = { b ( 'content' , { } ) } >
3028 { /* Documentation section */ }
3129 < div className = { b ( 'docs' ) } >
3230 < Text variant = "subheader-3" color = "primary" className = { b ( 'title' ) } >
You can’t perform that action at this time.
0 commit comments