Skip to content

Commit 64768d2

Browse files
committed
ditto
1 parent 3647ce3 commit 64768d2

File tree

1 file changed

+3
-3
lines changed
  • packages/svelte/src/internal/server

1 file changed

+3
-3
lines changed

packages/svelte/src/internal/server/index.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -544,9 +544,9 @@ export function once(get_value) {
544544
* @returns {string}
545545
*/
546546
export function props_id(payload) {
547-
const UID = payload.uid();
548-
payload.out += '<!--#' + UID + '-->';
549-
return UID;
547+
const uid = payload.uid();
548+
payload.out += '<!--#' + uid + '-->';
549+
return uid;
550550
}
551551

552552
export { attr, clsx };

0 commit comments

Comments
 (0)