diff --git a/nym-connect/CHANGELOG.md b/nym-connect/CHANGELOG.md
index 17bc105f2b..138b2beb0c 100644
--- a/nym-connect/CHANGELOG.md
+++ b/nym-connect/CHANGELOG.md
@@ -2,6 +2,8 @@
## UNRELEASED
+- Remove test and earn
+
## [nym-connect-v1.1.6](https://github.com/nymtech/nym/tree/nym-connect-v1.1.6) (2023-01-17)
- part (1) show gateway status on the UI if the gateway is not live, is overloaded or is slow ([#2824])
@@ -49,7 +51,6 @@ This release contains the new opt-in Test & Earn program, and it uses a stress-t
[#1789]: https://github.com/nymtech/nym/pull/1789
[#1805]: https://github.com/nymtech/nym/pull/1805
-
## [nym-connect-v1.1.0](https://github.com/nymtech/nym/tree/nym-connect-v1.1.0) (2022-11-09)
- nym-connect: rework of rewarding changes the directory data structures that describe the mixnet topology ([#1472])
@@ -77,7 +78,6 @@ This release contains the new opt-in Test & Earn program, and it uses a stress-t
[#1540]: https://github.com/nymtech/nym/pull/1540
-
## [nym-connect-v1.0.1](https://github.com/nymtech/nym/tree/nym-connect-v1.0.1) (2022-07-22)
### Added
diff --git a/nym-connect/src-tauri/tauri.conf.json b/nym-connect/src-tauri/tauri.conf.json
index 1afe519f37..b9942d4537 100644
--- a/nym-connect/src-tauri/tauri.conf.json
+++ b/nym-connect/src-tauri/tauri.conf.json
@@ -68,7 +68,7 @@
{
"title": "NymConnect",
"width": 240,
- "height": 675,
+ "height": 635,
"resizable": false,
"decorations": false,
"transparent": true
diff --git a/nym-connect/src/layouts/ConnectedLayout.tsx b/nym-connect/src/layouts/ConnectedLayout.tsx
index ed51482042..da4c757208 100644
--- a/nym-connect/src/layouts/ConnectedLayout.tsx
+++ b/nym-connect/src/layouts/ConnectedLayout.tsx
@@ -53,6 +53,5 @@ export const ConnectedLayout: FCWithChildren<{
{/* */}
-
>
);
diff --git a/nym-connect/src/layouts/DefaultLayout.tsx b/nym-connect/src/layouts/DefaultLayout.tsx
index ad4c5f018e..29858afe7f 100644
--- a/nym-connect/src/layouts/DefaultLayout.tsx
+++ b/nym-connect/src/layouts/DefaultLayout.tsx
@@ -44,8 +44,6 @@ export const DefaultLayout: FCWithChildren<{
isError={isError}
onClick={onConnectClick}
/>
-
-
);
};