[WEB-3998] fix: minor empty states changes + refactoring (#7151)

This commit is contained in:
Akshita Goyal 2025-06-02 15:50:57 +05:30 committed by GitHub
parent 0568b8d583
commit 16d63abcdc
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
15 changed files with 46 additions and 29 deletions

View file

@ -1,7 +1,7 @@
import { IWorkspace } from "@plane/types";
type TProps = {
workspace: IWorkspace;
workspace?: IWorkspace;
};
export const SubscriptionPill = (props: TProps) => <></>;