feat: Move About and Terms into separate modal

This commit is contained in:
Maksim Eltyshev
2025-12-12 16:10:07 +01:00
parent 12f388fd35
commit a47bdb9c8a
48 changed files with 170 additions and 94 deletions
+8
View File
@@ -13,6 +13,13 @@ const openAdministrationModal = () => ({
},
});
const openInformationModal = () => ({
type: EntryActionTypes.MODAL_OPEN,
payload: {
type: ModalTypes.INFORMATION,
},
});
const openUserSettingsModal = () => ({
type: EntryActionTypes.MODAL_OPEN,
payload: {
@@ -61,6 +68,7 @@ const closeModal = () => ({
export default {
openAdministrationModal,
openInformationModal,
openUserSettingsModal,
openAddProjectModal,
openProjectSettingsModal,