Skip to content

Commit

Permalink
change capitalization
Browse files Browse the repository at this point in the history
  • Loading branch information
heyngra committed Oct 5, 2024
1 parent 73369b6 commit 7129431
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/renderer/src/components/settings/SettingDropdown.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ type SettingDropdownProps = {
disabled: false,
}

const settingDropdown: Component<SettingDropdownProps> = props => {
const SettingDropdown: Component<SettingDropdownProps> = props => {

const changeOption = (e: Event) => {
const option = (e.target as HTMLSelectElement).value;
Expand All @@ -34,4 +34,4 @@ const settingDropdown: Component<SettingDropdownProps> = props => {
</div>
);
}
export default settingDropdown
export default SettingDropdown
4 changes: 2 additions & 2 deletions src/renderer/src/components/settings/SettingsView.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import "../../assets/css/settings/settings-item.css";
import { createEffect, createSignal, onMount } from 'solid-js';
import { changeAudioDevice} from '../../lib/Music';

const settingsView = () => {
const SettingsView = () => {
let view;

const [audioDevices, setAudioDevices] = createSignal(new Map<string, ()=>any>());
Expand Down Expand Up @@ -39,4 +39,4 @@ const settingsView = () => {
</div>
)
}
export default settingsView;
export default SettingsView;

0 comments on commit 7129431

Please sign in to comment.