Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: thomasnordquist <7721625+thomasnordquist@users.noreply.github.com> Co-authored-by: Thomas Nordquist <thomasnordquist@users.noreply.github.com>
12 lines
356 B
TypeScript
12 lines
356 B
TypeScript
import { ActionTypes, GlobalAction } from '../reducers/Global'
|
|
|
|
export const showUpdateNotification = (show: boolean): GlobalAction => ({
|
|
type: ActionTypes.showUpdateNotification,
|
|
showUpdateNotification: show,
|
|
})
|
|
|
|
export const showUpdateDetails = (show: boolean): GlobalAction => ({
|
|
type: ActionTypes.showUpdateDetails,
|
|
showUpdateDetails: show,
|
|
})
|