const useRefreshScreensStore = create((set) => ({
refreshScreens: [],
scheduleRefresh: (screen) => {
set((state) => ({ refreshScreens: [...state.refreshScreens, screen] }));
},
refreshScreen: (screen) => {
set((state) => ({ refreshScreens: state.refreshScreens.filter((item) => item !== screen) }));
}
}));
For further actions, you may consider blocking this person and/or reporting abuse
Top comments (0)