Skip to content
Snippets Groups Projects
Unverified Commit 6a85f845 authored by Michael Clark's avatar Michael Clark Committed by GitHub
Browse files

:electron: Fix gocardless "Linking account" integration (#3212)

* fix gocardless call - forked process didnt know its origin

* add release notes

* mamma mia

* remove old change
parent 65329398
No related branches found
No related tags found
No related merge requests found
// @ts-strict-ignore // // @ts-strict-ignore
export { default as fetch } from 'node-fetch'; import nodeFetch from 'node-fetch';
export const fetch = (input: RequestInfo | URL, options?: RequestInit) => {
return nodeFetch(input, {
...options,
headers: {
...options?.headers,
origin: 'app://actual',
},
});
};
---
category: Bugfix
authors: [MikesGlitch]
---
Fix gocardless "Linking back account" integration in Desktop app.
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