* feat: ui changes for workspace switcher * fix: hover * fix: added current plan * feat: Return user role * chore: remove unused imports * fix: css * fix: added user role in workspace switcher * fix: return role as integer * fix: role casing * fix: refactor * fix: plan pill fix * fix: design updates * fix: refactor * fix: member translation * fix: css improvements * fix: truncate issue * fix: workspace switcher dropdown email truncate * fix: workspace switcher dropdown email truncate * fix: role --------- Co-authored-by: sangeethailango <sangeethailango21@gmail.com> Co-authored-by: Anmol Singh Bhatia <anmolsinghbhatia@plane.so>
7 lines
147 B
TypeScript
7 lines
147 B
TypeScript
import { IWorkspace } from "@plane/types";
|
|
|
|
type TProps = {
|
|
workspace: IWorkspace;
|
|
};
|
|
|
|
export const SubscriptionPill = (props: TProps) => <></>;
|