Skip to content

Commit

Permalink
dump
Browse files Browse the repository at this point in the history
  • Loading branch information
lavi27 committed Jan 14, 2024
1 parent b440a9e commit e06cd13
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion composables/useAPI.ts
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,7 @@ export default () => {
},
authCallback: async (code: string, isShowError: boolean = true) => {
const res = await createDashboardAPI(isShowError).post(`/auth/callback`, { code })
return
return res.data
},
}

Expand Down
1 change: 0 additions & 1 deletion composables/useSocketAlert.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ export default () => {
const alertsData = useState<APIAlert[]>('alertsData', () => [])

onMounted(() => {
return
//config.public.API_BASE_URL as string
connection.value = io('https://ws-api.nguard.xyz/').connect()

Expand Down
2 changes: 1 addition & 1 deletion layouts/spinerWrap.vue
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ const { loadingState } = useLoadingState()

<div v-else-if="loadingState === LOADING_STATE.Connecting" class="state_wrap">
<div class="state h-[500px]">
<h3 class="pb-8 text-2xl font-semibold">
<h3 class="pb-8 text-2xl">
<!-- 불러오는 중 -->
{{ $t('common.loading') }}
</h3>
Expand Down
2 changes: 1 addition & 1 deletion pages/servers.vue
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ onMounted(async () => {
})
</script>

<style lang="scss">
<style lang="scss" scoped>
@import url('~/assets/styles/pages/servers.scss');
</style>

Expand Down

0 comments on commit e06cd13

Please sign in to comment.