1
0
Fork 0

removed unused file

This commit is contained in:
Kim, Jimin 2022-02-03 08:55:05 +09:00
parent e7cf2392b4
commit 456b62530e

View file

@ -1,45 +0,0 @@
<script lang="ts">
import { open as shellOpen } from "@tauri-apps/api/shell"
import { OperationType } from "./types"
//
// Variables
//
export let operationType: OperationType
</script>
{#if operationType == OperationType.Install}
<p>
You can also optionally setup
<!-- svelte-ignore a11y-invalid-attribute -->
<a
href="javascript:;"
on:click={() => {
shellOpen(
"https://github.com/War-Brokers-Mods/WBM#3-set-up-obs-optional"
)
}}
>
OBS overlays
</a>
for WB statistics.
</p>
{:else}
<p>Remove launch option if you're using macOS or linux.</p>
{/if}
<style lang="scss">
p {
@apply text-center;
}
a {
@apply text-blue-400;
&:hover {
@apply text-blue-500;
}
}
</style>