Skip to content

Commit

Permalink
Merge pull request #154 from akakou/hotfix/showing-contents
Browse files Browse the repository at this point in the history
Hotfix/showing contents
  • Loading branch information
akakou authored Oct 4, 2024
2 parents fcac1a3 + a6d84ad commit db5aa3c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 5 deletions.
4 changes: 2 additions & 2 deletions ta/example/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,10 @@ func main() {
handler := func(w http.ResponseWriter, r *http.Request) {
w.Header().Set("Content-Type", "text/html")

fmt.Fprintln(w, "Hello from TA running on TEE :)")
fmt.Fprintln(w, "Hello from TA running on TEE :)<br/>")

for _, v := range config.Verifiers {
fmt.Fprintf(w, `<button onclick="window.open('%s');">Verifier Page (%s)</button><br>`, v+VERIFIER_PATH, v)
fmt.Fprintf(w, `<button onclick="window.open('%s');">Verifier Page (%s)</button><br/>`, v+VERIFIER_PATH, v)
}
}

Expand Down
3 changes: 0 additions & 3 deletions verifier/serv/static/js/ui/app.js
Original file line number Diff line number Diff line change
Expand Up @@ -39,9 +39,6 @@ const App = () => {
<h3>Message: </h3>
<p>{message}</p>

<label for="autoredirect">Do not redirect back automatically</label>


<br />

<h2>Logs</h2>
Expand Down

0 comments on commit db5aa3c

Please sign in to comment.