Skip to content

Commit 2e69127

Browse files
committed
fix: fix classname typo
1 parent 630a67d commit 2e69127

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

packages/vscode-extension/src/webview/components/SettingsDropdown.tsx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ function ActivateLicenseItem() {
3232
onSelect={() => {
3333
openModal(<ActivateLicenseView />, { title: "Activate License" });
3434
}}>
35-
<span className="dropdown-menu-item-wraper">
35+
<span className="dropdown-menu-item-wrapper">
3636
<span className="codicon codicon-key" />
3737
<div className="dropdown-menu-item-content" data-testid="settings-report-issue">
3838
Activate License
@@ -92,7 +92,7 @@ function SettingsDropdown({ project, isDeviceRunning, children, disabled }: Sett
9292
onSelect={() => {
9393
project.openDevMenu();
9494
}}>
95-
<span className="dropdown-menu-item-wraper">
95+
<span className="dropdown-menu-item-wrapper">
9696
<span className="codicon codicon-code" />
9797
<div className="dropdown-menu-item-content">
9898
Open dev menu
@@ -145,7 +145,7 @@ function SettingsDropdown({ project, isDeviceRunning, children, disabled }: Sett
145145
onSelect={() => {
146146
project.reportIssue();
147147
}}>
148-
<span className="dropdown-menu-item-wraper">
148+
<span className="dropdown-menu-item-wrapper">
149149
<span className="codicon codicon-report" />
150150
<div className="dropdown-menu-item-content" data-testid="settings-report-issue">
151151
Report Issue
@@ -157,7 +157,7 @@ function SettingsDropdown({ project, isDeviceRunning, children, disabled }: Sett
157157
onSelect={async () => {
158158
openModal(<ExportLogsView />, { title: "Export Radon Logs" });
159159
}}>
160-
<span className="dropdown-menu-item-wraper">
160+
<span className="dropdown-menu-item-wrapper">
161161
<span className="codicon codicon-share" />
162162
<div className="dropdown-menu-item-content" data-testid="settings-report-issue">
163163
Export Diagnostics Report

packages/vscode-extension/src/webview/components/shared/Dropdown.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ button {
7171
color: var(--swm-default-text);
7272
}
7373

74-
.dropdown-menu-item-wraper {
74+
.dropdown-menu-item-wrapper {
7575
display: flex;
7676
width: 100%;
7777
align-items: center;

packages/vscode-extension/src/webview/components/shared/DropdownMenuComponents.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ export function CommandItem({
6565
onSelect={onSelect}
6666
disabled={disabled}
6767
data-testid={dataTest}>
68-
<span className="dropdown-menu-item-wraper">
68+
<span className="dropdown-menu-item-wrapper">
6969
<span className={`codicon codicon-${icon}`} />
7070
<div className="dropdown-menu-item-content">
7171
{label}

0 commit comments

Comments
 (0)