test shell script

This commit is contained in:
joseph le 2023-09-22 16:15:43 +07:00
parent a579f60e3e
commit 0987499388
2 changed files with 1 additions and 16 deletions

View File

@ -278,20 +278,6 @@ export async function runtimeCheckLogs(folderPath) {
"\n\n***Issue found:***\n" +
issueFound
);
// sendMessToZulip(
// "stream",
// "AUS_VN_Test",
// "Test Log Alerts",
// "------------\n\n:warning: :warning: **" +
// fileName +
// "**\n\n" +
// content +
// "\n\n" +
// spoiler +
// "\n\n*Issue found:*\n" +
// issueFound
// );
}
}, 3000);
//false: next

View File

@ -3,7 +3,7 @@ import React, { useEffect, useState } from "react";
import { addKeyValue, deleteValue, getKeyValues } from "../api/apiLog";
import { Link } from "react-router-dom";
const ManageValues = () => {
const [keyValue, setKeyValue] = useState([]);
const [key, setKey] = useState([]);
const [addValue, setAddValue] = useState({key: "CATCH_FAULTY", value:""});
@ -67,7 +67,6 @@ const ManageValues = () => {
getValues();
}
}}>Delete</button>
{/* <button style={{cursor:"pointer", backgroundColor:"green", color:"white"}}>Save</button> */}
</td>
</tr>
))}