Move invite dialog to centered design (#6740)

* wip

* Update invite dialog
This commit is contained in:
Tom Moor
2024-03-29 20:26:18 -06:00
committed by GitHub
parent 09c82bdf40
commit ceb7ae1514
5 changed files with 157 additions and 209 deletions

View File

@@ -16,8 +16,7 @@ export const inviteUser = createAction({
stores.policies.abilities(stores.auth.team?.id || "").inviteUser,
perform: ({ t }) => {
stores.dialogs.openModal({
title: t("Invite people"),
fullscreen: true,
title: t("Invite to workspace"),
content: <Invite onSubmit={stores.dialogs.closeAllModals} />,
});
},