[WEB-2863] chore: minor improvements and bug fixes (#6222)

* fix: remove deprecated icons from logo picker

* improvement: minor empty states updates
This commit is contained in:
Prateek Shourya 2024-12-23 20:26:07 +05:30 committed by GitHub
parent 20260f0720
commit b80a904bbf
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
6 changed files with 15 additions and 1 deletions

View file

@ -0,0 +1,2 @@
export * from "./team-issues";
export * from "./team-view-issues";

View file

@ -0,0 +1,3 @@
import { observer } from "mobx-react";
export const TeamEmptyState: React.FC = observer(() => <></>);

View file

@ -0,0 +1,3 @@
import { observer } from "mobx-react";
export const TeamViewEmptyState: React.FC = observer(() => <></>);