Skip to content

Commit

Permalink
chore: debug CI
Browse files Browse the repository at this point in the history
  • Loading branch information
JoeSlain committed Nov 12, 2024
1 parent b8e0932 commit c8e56d1
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:18.18 as builder
FROM node:18.18 AS builder

ARG VITE_API_URL VITE_ENVIRONMENT_NAME VITE_MODEL_NAME VITE_MODEL_MODE VITE_MODEL_TEMPERATURE VITE_MATOMO_URL
ENV VITE_API_URL=$VITE_API_URL
Expand Down
7 changes: 3 additions & 4 deletions src/components/Root/Root.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import { Navigate, Route, Routes, useLocation, redirect } from 'react-router-dom'
import { useAuth } from '@utils/context/authContext'
import { Navigate, Route, Routes, useLocation } from 'react-router-dom'
import Error404 from '../../pages/404'
import { Contact } from '../../pages/Contact'
import { FAQ } from '../../pages/FAQ'
Expand All @@ -7,13 +8,11 @@ import { Meeting } from '../../pages/Meeting'
import { Tools } from '../../pages/Tools'
import Footer from './Footer'
import Header from './Header'
import { LoadingSpinner } from 'components/LoadingSpinner'
import { useAuth } from '@utils/context/authContext'

export const Root = () => {
const location = useLocation()
const meetingPathRegex = /^\/meeting(\/.*)?$/

console.log('Benjamin')
return (
<div className="min-h-screen flex flex-col" id="screen">
<Header />
Expand Down

0 comments on commit c8e56d1

Please sign in to comment.