From a44804cd1da3785de1318eb404ccd3daa103078c Mon Sep 17 00:00:00 2001 From: Sam Chau Date: Tue, 3 Sep 2024 22:25:59 +0930 Subject: [PATCH] fix: add pull button back --- .../src/components/settings/SettingsPage.jsx | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/frontend/src/components/settings/SettingsPage.jsx b/frontend/src/components/settings/SettingsPage.jsx index ef2bee9..17d36b7 100644 --- a/frontend/src/components/settings/SettingsPage.jsx +++ b/frontend/src/components/settings/SettingsPage.jsx @@ -664,6 +664,24 @@ const SettingsPage = () => { )} + {/* Conditionally render Pull button */} + {selectedIncomingChanges.length > 0 && ( + + + + )} + )