Remove missing function

This commit is contained in:
Elizabeth Cray 2023-10-04 01:31:52 -04:00
parent ca5bccce93
commit e94eaa3ebb
2 changed files with 0 additions and 2 deletions

View File

@ -159,7 +159,6 @@ const uploadSSH = () => {
const displayFingerprints = () => {
// Get SSH Fingerprints and display them
$.get(USE_ORIGIN + "/fingerprint.php", (response) => {
dbp(response);
if (response) {
var html =
'<div><table class="fingerprintTable"><tr><th>Bits</th><th>Fingerprint (SHA256)</th><th class="text-start">Algorithm</th></tr>';

View File

@ -72,7 +72,6 @@ const beginOauth = () => {
const displayFingerprints = () => {
// Get SSH Fingerprints and display them
$.get(USE_ORIGIN+"/fingerprint.php", (response) => {
dbp(response);
if (response) {
var html = "<div><table class=\"fingerprintTable\"><tr><th>Bits</th><th>Fingerprint (SHA256)</th><th class=\"text-start\">Algorithm</th></tr>";
response.split("\n").forEach((line) => {