Git Product home page Git Product logo

Comments (3)

fabian-hiller avatar fabian-hiller commented on May 13, 2024

What happens in line 56 in routes\auth\login\index.tsx? Your problem is an ESLint rule that tries to protect you from bugs. So it is not necessarily a bug in Qwik or Modular Forms.

from modular-forms.

RBleyenberg avatar RBleyenberg commented on May 13, 2024

Ah,

Makes sense the errors the index.ts is just a export const with basic axios for the api call but i do import constants as AUTH_TOKEN, API_ENDPOINT ect ect

all considered valid-lexical-scope so i just disabled it with a rule 'qwik/valid-lexical-scope': 'off' in the lintrc file for the moment
also i changed the default config of a rule '@typescript-eslint/consistent-type-imports': 'warn', from error to warn.

the last part is because your code/guide has unused vars

const [**unused**, { Form, Field }] = useForm<CountryForm>({ loader: countryFormLoader(), action: countryFormActionServerSide(), validate: zodForm$(countrySchema), });

After that it all works ^^

Thanks for your input

from modular-forms.

fabian-hiller avatar fabian-hiller commented on May 13, 2024

With array destructuring you don't have to write unused variables:

const [, { Form, Field }] = useForm<Values>();

from modular-forms.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.