Skip to content

Commit

Permalink
feat(msteams): add migration for msteams
Browse files Browse the repository at this point in the history
  • Loading branch information
grandwizard28 committed Mar 9, 2025
1 parent 74edc94 commit 2565773
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions frontend/src/pages/ChannelsEdit/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -53,8 +53,8 @@ function ChannelsEdit(): JSX.Element {
};
}

if (value && 'msteams_configs' in value) {
const msteamsConfig = value.msteams_configs[0];
if (value && 'msteamsv2_configs' in value) {
const msteamsConfig = value.msteamsv2_configs[0];
channel = msteamsConfig;
return {
type: ChannelType.MsTeams,
Expand Down

0 comments on commit 2565773

Please sign in to comment.