Skip to content

Commit

Permalink
rename option.svelte to optionsdisplay to avoid windows errors
Browse files Browse the repository at this point in the history
  • Loading branch information
r2dev2 committed May 17, 2024
1 parent 6c7d146 commit 502fbdd
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
<script lang="ts">
// NOTE: this file is not to be named Options.svelte as in windows,
// options.js and Options.js cannot coexist in the same directory.
//
// @pikachoo - https://discord.com/channels/780938154437640232/794062715278196768/1240876505173725264
import Settings from './Settings.svelte';
import dark from 'smelte/src/dark';
import { paramsStandalone, isTwitch } from '../js/constants.js';
Expand Down
2 changes: 1 addition & 1 deletion src/components/Popout.svelte
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<script>
import MainPane from './MainPane.svelte';
import Options from './Options.svelte';
import Options from './OptionsDisplay.svelte';
</script>

<MainPane>
Expand Down
2 changes: 1 addition & 1 deletion src/components/Watch.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
import { onKeyEvent } from '../js/shortcuts.js';
import ChatEmbed from './ChatEmbed.svelte';
import MainPane from './MainPane.svelte';
import Options from './Options.svelte';
import Options from './OptionsDisplay.svelte';
import Captions from './Captions.svelte';
document.title = 'LiveTL';
Expand Down
2 changes: 1 addition & 1 deletion src/js/pages/options.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import App from '../../components/Options.svelte';
import App from '../../components/OptionsDisplay.svelte';
import { displayMode } from '../store.js';
import { DisplayMode } from '../constants.js';
import 'smelte/src/tailwind.css';
Expand Down

0 comments on commit 502fbdd

Please sign in to comment.