Skip to content

Commit

Permalink
feat: app to release
Browse files Browse the repository at this point in the history
  • Loading branch information
tachibana-shin committed Dec 10, 2023
1 parent 9315895 commit aa76da3
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/App.vue
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
<template>
<span
v-if="IS_BETA"
class="fixed top-1 right-1 px-2 py-0.5 rounded-xl bg-blue-500 opacity-70 text-white z-9999 transition-opacity duration-200 hover:opacity-90 text-12px"
>Beta</span
>
Expand All @@ -8,6 +9,7 @@

<script setup lang="ts">
import eruda2 from "eruda2"

Check warning on line 11 in src/App.vue

View workflow job for this annotation

GitHub Actions / Run eslint scanning

'eruda2' is defined but never used
import { IS_BETA } from "src/constants"
const i18n = useI18n()
Expand Down
2 changes: 2 additions & 0 deletions src/constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ import type { AppInfo } from "raiku-pgs/plugin"
export const SUPABASE_PROJECT_URL = process.env.SUPABASE_PROJECT_URL
export const SUPABASE_PROJECT_KEY = process.env.SUPABASE_PROJECT_KEY

export const IS_BETA = false

// functions for dev
export const WARN = console.warn.bind(console)

Expand Down

0 comments on commit aa76da3

Please sign in to comment.