Skip to content

Commit

Permalink
fix wrong state for automaticTimezone
Browse files Browse the repository at this point in the history
Changelog: fixed
  • Loading branch information
antonbuks committed Sep 16, 2024
1 parent c9909f0 commit 76c5393
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ export default class ManageTimezones extends React.PureComponent<Props, State> {
};

handleAutomaticTimezone = () => {
const useAutomaticTimezone = !this.state.automaticTimezone;
const useAutomaticTimezone = !this.state.useAutomaticTimezone;
const manualTimezone = '';
let automaticTimezone = '';
let timezoneLabel: string;
Expand Down

0 comments on commit 76c5393

Please sign in to comment.