Commit d4b21c19 authored by Marek Veselý's avatar Marek Veselý
Browse files

Merge branch '783-chore-new-version-of-backend-v3-32-0' into 'main'

update backend to 3.32.0

Closes #783

See merge request inject/frontend!703
parents a7a62f1c dbd32076
Loading
Loading
Loading
Loading
+4 −3
Original line number Diff line number Diff line
import '@fontsource/inter'
import { Connection, constructClient } from '@inject/graphql'
import { constructClient } from '@inject/graphql'
import '@inject/shared/global.scss'
import 'normalize.css'
import React from 'react'
import ReactDOM from 'react-dom/client'

import { BlueprintProvider } from '@blueprintjs/core'
import { URQLConnection } from '@inject/frontend'
import type { LinkButtonProps } from '@inject/shared'
import { CenteredSpinner } from '@inject/shared'
import '@inject/shared/icons.ts'
@@ -37,14 +38,14 @@ declare module '@tanstack/react-router' {
ReactDOM.createRoot(document.getElementById('root') as HTMLElement).render(
  <React.StrictMode>
    <BlueprintProvider>
      <Connection>
      <URQLConnection>
        <RouterProvider
          router={router}
          context={{
            gql: constructClient(),
          }}
        />
      </Connection>
      </URQLConnection>
    </BlueprintProvider>
  </React.StrictMode>
)
Compare 0665e103 to 68cd0ff1
Original line number Diff line number Diff line
Subproject commit 0665e103a0f193f2b749dde2d476283dcf295443
Subproject commit 68cd0ff1fd7e52122187269bdd348f2cfba2f4b5
+1 −1
Original line number Diff line number Diff line
{
  "name": "@inject/codegen",
  "version": "3.30.3",
  "version": "3.32.0",
  "description": "GraphQL API Codegen Setup for the Inject Backend",
  "main": "index.js",
  "license": "MIT",
+1 −1
Original line number Diff line number Diff line
{
  "name": "@inject/frontend",
  "version": "3.30.3",
  "version": "3.32.0",
  "description": "Main wrapper for rendering INJECT Frontend",
  "main": "index.js",
  "license": "MIT",
+2 −0
Original line number Diff line number Diff line
@@ -61,11 +61,13 @@ export const Login = () => {

    if (!username.current?.value) {
      setErrors(prev => ({ ...prev, username: true }))
      beginWiggling()
      return
    }

    if (!password.current?.value) {
      setErrors(prev => ({ ...prev, password: true }))
      beginWiggling()
      return
    }

Loading