diff --git a/.env.example b/.env.example
index 3004daa76..b116e6d40 100644
--- a/.env.example
+++ b/.env.example
@@ -1,4 +1,3 @@
NODE_ENV=development
# BACKEND_URL="https://example.com"
-# PATRON_URL="https://patron.example.com"
# PROXY_HTTPS_INSECURE=false
diff --git a/README.md b/README.md
index 91821cf8b..30fa61a1d 100644
--- a/README.md
+++ b/README.md
@@ -79,7 +79,7 @@ Try again.
You can also run Soapbox FE locally with a live production server as the backend.
-> **Note:** Whether or not this works depends on your production server. It does not seem to work with Cloudflare.
+> **Note:** Whether or not this works depends on your production server. It does not seem to work with Cloudflare or VanwaNet.
To do so, just copy the env file:
@@ -124,7 +124,7 @@ For https, be sure to also set `PROXY_HTTPS_INSECURE=true`.
Allows using an HTTPS backend if set to `true`.
-This is needed if `BACKEND_URL` or `PATRON_URL` are set to an `https://` value.
+This is needed if `BACKEND_URL` is set to an `https://` value.
[More info](https://stackoverflow.com/a/48624590/8811886).
**Default:** `false`
diff --git a/app/soapbox/actions/patron.js b/app/soapbox/actions/patron.js
index 6b4885c9a..ec9a35241 100644
--- a/app/soapbox/actions/patron.js
+++ b/app/soapbox/actions/patron.js
@@ -5,7 +5,7 @@ export const PATRON_FUNDING_FETCH_FAIL = 'PATRON_FUNDING_FETCH_FAIL';
export function fetchFunding() {
return (dispatch, getState) => {
- api(getState).get('/patron/v1/funding').then(response => {
+ api(getState).get('/api/patron/v1/instance').then(response => {
dispatch(importFetchedFunding(response.data));
}).catch(error => {
dispatch(fetchFundingFail(error));
diff --git a/app/soapbox/common.js b/app/soapbox/common.js
index 22146c0e0..6947fd07c 100644
--- a/app/soapbox/common.js
+++ b/app/soapbox/common.js
@@ -3,7 +3,7 @@
import Rails from 'rails-ujs';
export function start() {
- require('font-awesome/css/font-awesome.css');
+ require('fork-awesome/css/fork-awesome.css');
require.context('../images/', true);
try {
diff --git a/app/soapbox/components/__tests__/__snapshots__/avatar-test.js.snap b/app/soapbox/components/__tests__/__snapshots__/avatar-test.js.snap
index c3139fe69..2938fb3ed 100644
--- a/app/soapbox/components/__tests__/__snapshots__/avatar-test.js.snap
+++ b/app/soapbox/components/__tests__/__snapshots__/avatar-test.js.snap
@@ -2,30 +2,36 @@
exports[`