mirror of
https://github.com/PhaseII-eAmusement-Network/PhaseWeb3-Vue.git
synced 2026-09-13 03:35:18 -05:00
Clean up rogue console.log, fix imports
This commit is contained in:
@@ -93,7 +93,6 @@ async function updateProfile() {
|
||||
var newProfile = JSON.parse(JSON.stringify(props.profile));
|
||||
|
||||
newProfile.qpro = newQpro;
|
||||
console.log(newQpro);
|
||||
const profileStatus = await APIUpdateProfile(
|
||||
GameConstants.IIDX,
|
||||
props.version,
|
||||
|
||||
@@ -1,6 +1,4 @@
|
||||
<script setup>
|
||||
import { defineProps, defineEmits } from "vue";
|
||||
|
||||
// eslint-disable-next-line vue/require-prop-types
|
||||
defineProps(["headers", "items"]);
|
||||
const emits = defineEmits(["row-clicked"]);
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
<script setup>
|
||||
import { ref, computed, defineProps } from "vue";
|
||||
import { ref, computed } from "vue";
|
||||
|
||||
const props = defineProps({
|
||||
profile: {
|
||||
|
||||
@@ -96,8 +96,6 @@ async function loadProfile() {
|
||||
async function loadArcade(arcadeId) {
|
||||
try {
|
||||
const data = await APIGetArcade(arcadeId);
|
||||
console.log(data);
|
||||
|
||||
return data;
|
||||
} catch (error) {
|
||||
console.error("Failed to fetch arcade data:", error);
|
||||
|
||||
@@ -19,7 +19,6 @@ async function loadVideos() {
|
||||
try {
|
||||
const data = await APIGetUserContent("lpac_upload");
|
||||
contentData.value = filterContent(data);
|
||||
console.log(contentData.value);
|
||||
} catch (error) {
|
||||
console.error("Failed to fetch content:", error);
|
||||
}
|
||||
|
||||
@@ -24,7 +24,6 @@ if (serviceType.value) {
|
||||
const code = urlParams.get("code");
|
||||
urlParams.delete("code");
|
||||
if (code !== undefined) {
|
||||
console.log(code);
|
||||
integrateWith(serviceType.value, code);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user