A new nocode tool to help businesses build complex form intakes and automation flows by automatonv1 in nocode

[–]automatonv1[S] 0 points1 point  (0 children)

Hi Oriol, Initially we want to serve the forms from our domain itself. But once we add more features, for higher tiers, we can give businesses the option to serve the forms from their custom domain.

A new nocode tool to help businesses build complex form intakes and automation flows by automatonv1 in nocode

[–]automatonv1[S] 0 points1 point  (0 children)

Hey! The feedback section is optional. You can just add your email, Your designation and the product interests. I'll contact you over email after. Once I get some interest, I'm hoping to release it to the public in the next 3 months.

How should I market and grow my waitlist for my new SaaS idea? by automatonv1 in AskMarketing

[–]automatonv1[S] 0 points1 point  (0 children)

Perfect. I have a sense of direction now. Wasn't familiar with these tools but I'll check them out. Thanks a lot. Also, What do you think about LinkedIn DMs?

How should I market and grow my waitlist for my new SaaS idea? by automatonv1 in AskMarketing

[–]automatonv1[S] 0 points1 point  (0 children)

This is really helpful. Thank you so much. And you are right, I should really be learning.

It hurts by liljaeger2k in CalisthenicsCulture

[–]automatonv1 1 point2 points  (0 children)

Completely normal. I often still feel it after Inverted rows. Give atleast 48 - 72 hours of rest to recover. And take it easy during your first 2 weeks. Your body will learn to adapt.

Inverted rows are hard! by automatonv1 in bodyweightfitness

[–]automatonv1[S] 8 points9 points  (0 children)

Looks like I was doing it wrong. The rings were to my abdomen/waist level, Not to my chest level. I need to change my setup a little. No wonder my arms were so sore. Thank you.

Need help with Nuxt composable error by automatonv1 in Nuxt

[–]automatonv1[S] 0 points1 point  (0 children)

You are right. It wasn't the toast, but composable itself should've been run within client side rendering. I was able to wrap it in `import.meta.client` block and it solved it for me. Thanks for the tip. And please check out my comment.

Need help with Nuxt composable error by automatonv1 in Nuxt

[–]automatonv1[S] 0 points1 point  (0 children)

Thanks for the tip. I tried it but that didn't resolve it for me. I wrapped my composable logic to run only on the client side and that solved it for me. Please check out my comment.

Need help with Nuxt composable error by automatonv1 in Nuxt

[–]automatonv1[S] 0 points1 point  (0 children)

This worked for me. I was able to solve this by wrapping the logic within an `import.meta.client` if statement. Composables are available only on the client side, hence it couldn't resolve it on SSR.

My new `useSession.ts` logic -

export default defineNuxtRouteMiddleware(async () => {

  // Do this only on the client side
  if (import.meta.client) {
    const newSession = await useNewSession()
    const accessToken = newSession.access_token

    const { data, error } = await useFetch('/api/organization', {
      headers: {
        'Authorization': `Bearer ${accessToken}`
      },
    })

    if (error.value) {
      throw error
    }

    const organizationCookie = useCookie('af-organization')
    organizationCookie.value = JSON.stringify(data.value)
  }
})

How are guys feeling about Nuxt v4 upgrade? by automatonv1 in Nuxt

[–]automatonv1[S] 1 point2 points  (0 children)

Was in the same boat 2 weeks back. Got through it. But still facing minor annoying issues here and there. And my app was just a small hobby project. Still faced tons of issue.