Skip to content

Commit

Permalink
prod default values login
Browse files Browse the repository at this point in the history
  • Loading branch information
scammo committed Jan 4, 2024
1 parent 6275a79 commit 3d0a3b8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions frontend/src/views/Login.vue
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ const router = useRouter();
const route = useRoute();
const loading = ref(false);
const email = ref("[email protected]");
const password = ref("password");
const email = ref(import.meta.env.PROD ? "" : "[email protected]");
const password = ref(import.meta.env.PROD ? "" : "password");
const onSubmit = async () => {
loading.value = true;
Expand Down

0 comments on commit 3d0a3b8

Please sign in to comment.