Skip to content

Commit

Permalink
remove useless code
Browse files Browse the repository at this point in the history
  • Loading branch information
VachetVirginie committed Aug 7, 2024
1 parent e7c60fa commit 166bdd2
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -442,7 +442,6 @@ export default defineComponent({
},
removeLastCharacter(historyKey: string) {
console.log(this.indexedThis[historyKey])
this.indexedThis[historyKey] = this.indexedThis[historyKey].slice(0, -1);
},
Expand Down Expand Up @@ -483,7 +482,7 @@ export default defineComponent({
return this.dateFormatReturn === 'DD/MM/YY' || this.dateFormatReturn === 'DD-MM-YY';
},
validateFullDate(historyKey: string, formattedDateReturn: string) {
validateFullDate(historyKey: string) {
const dateRegEx = this.createDateRegEx(this.dateFormat);
const isValidFormat = dateRegEx.test(this.inputValue);
Expand Down

0 comments on commit 166bdd2

Please sign in to comment.