Skip to content

Commit

Permalink
Update enum values in MessageTypes
Browse files Browse the repository at this point in the history
The enum values for `SelectionChange` and `UiReady` in the MessageTypes in `src/types/messages.ts` have been updated. They have been changed from 'Polychrom_SelectionChange' and 'Polychrom_UiReady' to 'Plugin_SelectionChange' and 'Plugin_UiReady' respectively.
  • Loading branch information
mikhin committed Mar 28, 2024
1 parent e7cbcab commit f149afd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/types/messages.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
export enum MessageTypes {
SelectionChange = 'Polychrom_SelectionChange',
UiReady = 'Polychrom_UiReady',
SelectionChange = 'Plugin_SelectionChange',
UiReady = 'Plugin_UiReady',
}

export interface MessagePayload<T> {
Expand Down

0 comments on commit f149afd

Please sign in to comment.