feat: Display last updates in About modal

This commit is contained in:
Maksim Eltyshev
2025-12-17 15:49:33 +01:00
parent 27fd10ba3f
commit 4f5f5ddad4
50 changed files with 220 additions and 48 deletions
+3 -3
View File
@@ -13,10 +13,10 @@ const openAdministrationModal = () => ({
},
});
const openInformationModal = () => ({
const openAboutModal = () => ({
type: EntryActionTypes.MODAL_OPEN,
payload: {
type: ModalTypes.INFORMATION,
type: ModalTypes.ABOUT,
},
});
@@ -68,7 +68,7 @@ const closeModal = () => ({
export default {
openAdministrationModal,
openInformationModal,
openAboutModal,
openUserSettingsModal,
openAddProjectModal,
openProjectSettingsModal,