DEV: Use the i18n helper in wizard (#29109)

This commit is contained in:
Jarek Radosz 2024-10-07 23:29:53 +09:00 committed by GitHub
parent 4d1e66418c
commit 607134545b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 3 deletions

View File

@ -7,11 +7,9 @@ import didUpdate from "@ember/render-modifiers/modifiers/did-update";
import { schedule } from "@ember/runloop";
import { htmlSafe } from "@ember/template";
import emoji from "discourse/helpers/emoji";
import I18n from "discourse-i18n";
import i18n from "discourse-common/helpers/i18n";
import WizardField from "./wizard-field";
const i18n = (...args) => I18n.t(...args);
export default class WizardStepComponent extends Component {
@tracked saving = false;