chore: maxCwTextLengthをただのconstにする
This commit is contained in:
parent
7f9f55620d
commit
a9a8d1fd4b
|
@ -248,9 +248,7 @@ const cwTextLength = computed((): number => {
|
|||
return cw.value?.length ?? 0;
|
||||
});
|
||||
|
||||
const maxCwTextLength = computed((): number => {
|
||||
return 100;
|
||||
});
|
||||
const maxCwTextLength = 100;
|
||||
|
||||
const canPost = computed((): boolean => {
|
||||
return !props.mock && !posting.value && !posted.value &&
|
||||
|
|
Loading…
Reference in New Issue