Skip to content
Snippets Groups Projects
Verified Commit 814e0b0f authored by Timm Fitschen's avatar Timm Fitschen
Browse files

FIX: Authorization header

parent 938e6cea
No related branches found
No related tags found
1 merge request!7Revert "MAINT: Ignore venv and package-lock.json"
Pipeline #56900 passed
...@@ -171,7 +171,7 @@ export const FdoCreate: React.FC<IResourceComponentsProps> = () => { ...@@ -171,7 +171,7 @@ export const FdoCreate: React.FC<IResourceComponentsProps> = () => {
const accessToken = useAccessToken() const accessToken = useAccessToken()
const meta = { const meta = {
headers: { Authentication: `Bearer ${accessToken}` } headers: { Authorization: `Bearer ${accessToken}` }
} }
const formRet = useStepsForm<any, HttpError, any>({ defaultValues: { repository: '', profile: '' }, refineCoreProps: { meta: meta } }) const formRet = useStepsForm<any, HttpError, any>({ defaultValues: { repository: '', profile: '' }, refineCoreProps: { meta: meta } })
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment