Skip to content

Commit

Permalink
NEXT-34304 - get rid of unnecessary type annotation
Browse files Browse the repository at this point in the history
  • Loading branch information
Haberkamp committed Mar 11, 2024
1 parent ff49eb4 commit 1b39697
Showing 1 changed file with 1 addition and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -114,10 +114,7 @@ export default defineComponent({
return `${percentage}%`;
},
progressClasses(): {
"sw-progress-bar__value--no-transition": boolean;
"sw-progress-bar__value--has-error": boolean;
} {
progressClasses() {
return {
"sw-progress-bar__value--no-transition":
this.modelValue < 1 || this.modelValue >= this.maxValue,
Expand Down

0 comments on commit 1b39697

Please sign in to comment.