Skip to content

Commit

Permalink
refactor(component-library): fix ts error
Browse files Browse the repository at this point in the history
  • Loading branch information
Haberkamp committed Feb 5, 2025
1 parent c055fee commit c17416e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,7 @@ const urlPrefix = computed(() => {
});
const url = computed(() => {
const trimmedValue = currentValue.value.trim();
const trimmedValue = currentValue.value?.trim();
if (!trimmedValue) return "";
return `${urlPrefix.value}${trimmedValue}`;
Expand Down

0 comments on commit c17416e

Please sign in to comment.