Skip to content

Commit

Permalink
chore: biome fix
Browse files Browse the repository at this point in the history
  • Loading branch information
ModyQyW committed Sep 20, 2024
1 parent 3daf132 commit d2d1817
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions docs/.vitepress/theme/custom.css
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@
}

/**
* Component: Home
* -------------------------------------------------------------------------- */
* Component: Home
* -------------------------------------------------------------------------- */

:root {
--vp-home-hero-name-color: transparent;
Expand Down
2 changes: 1 addition & 1 deletion packages/core/src/composables.ts
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,7 @@ export function useUn<T = any, R = UnResponse<T>, D = any>(
) => {
error.value = undefined;
const _url =
typeof executeUrl === "string" ? executeUrl : url ?? config.url;
typeof executeUrl === "string" ? executeUrl : (url ?? config.url);

if (_url === undefined) {
error.value = new UnError(UnError.ERR_INVALID_URL);
Expand Down

0 comments on commit d2d1817

Please sign in to comment.