remove console logs
This commit is contained in:
parent
82f7b4f22d
commit
f649adba5f
2 changed files with 0 additions and 4 deletions
|
@ -74,9 +74,6 @@ const head = document.querySelector("head");
|
||||||
let userId = head?.dataset.userId;
|
let userId = head?.dataset.userId;
|
||||||
let instanceUri = head?.dataset.instanceUri;
|
let instanceUri = head?.dataset.instanceUri;
|
||||||
|
|
||||||
console.log("User ID:", userId);
|
|
||||||
console.log("Instance URI:", instanceUri);
|
|
||||||
|
|
||||||
if (userId && instanceUri) {
|
if (userId && instanceUri) {
|
||||||
if (!instanceUri.startsWith("http")) {
|
if (!instanceUri.startsWith("http")) {
|
||||||
instanceUri = `https://${instanceUri}`;
|
instanceUri = `https://${instanceUri}`;
|
||||||
|
|
|
@ -48,7 +48,6 @@ export async function getLanyardData(id?: string): Promise<LanyardResponse> {
|
||||||
|
|
||||||
export async function handleReadMe(data: LanyardData): Promise<string | null> {
|
export async function handleReadMe(data: LanyardData): Promise<string | null> {
|
||||||
const userReadMe: string | null = data.kv?.readme;
|
const userReadMe: string | null = data.kv?.readme;
|
||||||
console.log("userReadMe", userReadMe);
|
|
||||||
|
|
||||||
if (
|
if (
|
||||||
!userReadMe ||
|
!userReadMe ||
|
||||||
|
|
Loading…
Add table
Reference in a new issue