From 401075cda69aff9f3408253ae90797fd7ce846a7 Mon Sep 17 00:00:00 2001 From: Chris Troutner Date: Wed, 26 Aug 2026 05:37:22 -0700 Subject: [PATCH] Adding .env.development --- .env.development | 4 ++++ src/services/optimistic-reply.js | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) create mode 100644 .env.development diff --git a/.env.development b/.env.development new file mode 100644 index 0000000..152b214 --- /dev/null +++ b/.env.development @@ -0,0 +1,4 @@ +# psf-memo-db REST API base URL (no trailing slash). +# Used at build time by Create React App (must be prefixed with REACT_APP_). +#REACT_APP_MEMO_DB_URL=http://localhost:5021 +REACT_APP_MEMO_DB_URL=https://memo-api.fullstackcash.net diff --git a/src/services/optimistic-reply.js b/src/services/optimistic-reply.js index f796362..3f52a2b 100644 --- a/src/services/optimistic-reply.js +++ b/src/services/optimistic-reply.js @@ -1,4 +1,4 @@ -'use strict' + // Build the optimistic reply object used by the reply form for immediate // thread rendering before the thread is refreshed from the network. This is a