Skip to content

Commit

Permalink
chore: debug
Browse files Browse the repository at this point in the history
  • Loading branch information
Mateusz Cholcha committed Oct 22, 2024
1 parent 4b042c8 commit 1468067
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion composables/useGetResponse.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,11 @@
export const useGetResponse = () => {
const config = usePublicRuntimeConfig()

const enabled = computed(() => config.getresponseApiEnabled)
const enabled = computed(() => {
// eslint-disable-next-line no-console
console.log('!!! config.getresponseApiEnabled !!!', config.getresponseApiEnabled)
return config.getresponseApiEnabled
})
const webConnectEnabled = computed(() => !!config.getresponseWebConnect)

const subscribe = async (data: { email: string }) => {
Expand Down

0 comments on commit 1468067

Please sign in to comment.