Skip to content

Commit

Permalink
Fix messageText type
Browse files Browse the repository at this point in the history
  • Loading branch information
mvdbeek committed May 15, 2024
1 parent bcdd2d2 commit b0f8568
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions client/src/components/Login/RegisterForm.vue
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ import {
BFormInput,
BFormText,
} from "bootstrap-vue";
import { computed, ref } from "vue";
import { computed, type Ref, ref } from "vue";
import { Toast } from "@/composables/toast";
import localize from "@/utils/localization";
Expand Down Expand Up @@ -46,7 +46,7 @@ const confirm = ref(null);
const password = ref(null);
const username = ref(null);
const subscribe = ref(null);
const messageText = ref(null);
const messageText: Ref<string | null> = ref(null);
const disableCreate = ref(false);
const labelPassword = ref(localize("Password"));
const labelPublicName = ref(localize("Public name"));
Expand Down

0 comments on commit b0f8568

Please sign in to comment.