Clean up rogue console.log, fix imports

This commit is contained in:
Trenton Zimmer
2025-01-14 16:14:54 -05:00
parent 240596f721
commit b8b3eac992
6 changed files with 1 additions and 8 deletions

View File

@@ -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,

View File

@@ -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"]);

View File

@@ -1,5 +1,5 @@
<script setup>
import { ref, computed, defineProps } from "vue";
import { ref, computed } from "vue";
const props = defineProps({
profile: {

View File

@@ -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);

View File

@@ -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);
}

View File

@@ -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);
}
}