Skip to content

Commit 7821fec

Browse files
committed
fix: unused classname
1 parent 3916cc7 commit 7821fec

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

src/containers/AsideNavigation/InformationPopup/InformationPopup.tsx

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,19 +14,17 @@ const b = cn('information-popup');
1414
export 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')}>

0 commit comments

Comments
 (0)