Skip to content

Commit

Permalink
feat: [M3-7114] Fix state issue with default radio when linode powere…
Browse files Browse the repository at this point in the history
…d down
  • Loading branch information
abailly-akamai committed Sep 28, 2023
1 parent 6550053 commit 1dc3d86
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ export const LinodeResize = (props: Props) => {
if (isLinodeOffline) {
formik.setFieldValue('migration_type', migrationTypeOptions.cold);
}
}, [linode, isLinodeOffline]);
}, [isLinodeOffline, open]);

React.useEffect(() => {
const allow_auto_disk_resize = shouldEnableAutoResizeDiskOption(
Expand Down

0 comments on commit 1dc3d86

Please sign in to comment.