diff --git a/src/components/MessagingSidebar/index.tsx b/src/components/MessagingSidebar/index.tsx index c66c4ce..23c926d 100644 --- a/src/components/MessagingSidebar/index.tsx +++ b/src/components/MessagingSidebar/index.tsx @@ -34,6 +34,7 @@ const MessagingSidebar = ({ onClose }: MessagingSidebarProps) => { variables: { projectId: location.pathname.split('/')[2]!, }, + fetchPolicy: 'network-only', }); setProjectThreads(threads?.data?.getProjectThreads!); } diff --git a/src/pages/AddProject/index.tsx b/src/pages/AddProject/index.tsx index 7cb476e..8ef2268 100644 --- a/src/pages/AddProject/index.tsx +++ b/src/pages/AddProject/index.tsx @@ -788,18 +788,33 @@ const AddProject = () => { boxShadow='1px 1px 10px rgba(50, 59, 105, 0.25)' borderRadius='10px' > - + {basicInfoForm.values.imageSource ? ( + + Wireframe + + ) : ( + + )} {basicInfoForm.values.name || 'Project Name'} @@ -1916,6 +1931,7 @@ const AddProject = () => {