Skip to content

Commit

Permalink
No commit message
Browse files Browse the repository at this point in the history
  • Loading branch information
NikolaRHristov committed Jan 16, 2025
1 parent 86f908a commit 34c59bd
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 6 deletions.
1 change: 0 additions & 1 deletion .astro/types.d.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,2 @@
/// <reference types="astro/client" />
/// <reference path="content.d.ts" />
/// <reference path="env.d.ts" />
6 changes: 1 addition & 5 deletions Source/Function/Commit/Layout.astro
Original file line number Diff line number Diff line change
@@ -1,9 +1,7 @@
---
import _UUID from "@Function/Commit/UUID/Fn.js";
// const { user, repo } = Astro.props;
const UUID = _UUID();
const UUID = (await import("@Function/Commit/UUID/Fn.js")).default();
---

<commit-table data-uuid={UUID}>
Expand Down Expand Up @@ -55,8 +53,6 @@ const UUID = _UUID();
const UUID = this.dataset["uuid"];

console.log(UUID);

console.log(this);
}
}

Expand Down

0 comments on commit 34c59bd

Please sign in to comment.