From 3f94fe86d2ca3be97f7968e2c0522f6abe8dfa85 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?L=C3=A9o?= <leopold.chappuis@savoirfairelinux.com>
Date: Mon, 10 Feb 2025 09:26:15 -0500
Subject: [PATCH] search-bar: Hide contact button

The contact button is intentionally hidden until the page is fully implemented.

Gitlab: #232

Change-Id: Icd9503734f74d24bc0b0683ca9e41bb95a994ba3
---
 client/src/components/ContactSearchBar.tsx | 1 +
 1 file changed, 1 insertion(+)

diff --git a/client/src/components/ContactSearchBar.tsx b/client/src/components/ContactSearchBar.tsx
index 11928ac9..ef83f177 100644
--- a/client/src/components/ContactSearchBar.tsx
+++ b/client/src/components/ContactSearchBar.tsx
@@ -64,6 +64,7 @@ export default function ContactSearchBar({ placeholder, handleChange }: ContactS
           }}
         />
         <SquareButton
+          sx={/* FIXME: Hide button until the contact page is available */ { visibility: 'hidden' }}
           aria-label="start swarm"
           Icon={PeopleGroupIcon}
           onClick={() => {
-- 
GitLab