-
Notifications
You must be signed in to change notification settings - Fork 6
Update fundamentals/certification-system #410
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -87,9 +87,21 @@ export default function Layout(props) { | |||||
| ᐧ A <i>tunnel client</i> hosts a web server; it remains hidden behind the tunnel server and protected from external threats. | ||||||
| </Tooltip> | ||||||
|
|
||||||
| <Tooltip anchorSelect="#tcb"> | ||||||
| <i>TEE Confirmation Block</i> (TCB) contains a unique device ID, equipment benchmark results, <br/>various hashes, device signature, and a certificate chain for signature verification.<br/><br/> | ||||||
|
|
||||||
| Trusted Loader generates and publishes TCB on the blockchain every 24 hours. | ||||||
| </Tooltip> | ||||||
|
|
||||||
| // Stabs and abbreviations | ||||||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 🧩 Analysis chain🏁 Script executed: #!/bin/bash
# First, examine the file at and around line 96
sed -n '90,105p' src/theme/Layout/index.jsRepository: Super-Protocol/docs Length of output: 621 🏁 Script executed: #!/bin/bash
# Also check if the file exists and its total line count
wc -l src/theme/Layout/index.jsRepository: Super-Protocol/docs Length of output: 92 🏁 Script executed: #!/bin/bash
# Search for the specific comment
rg -n 'Stabs and abbreviations' src/theme/Layout/index.jsRepository: Super-Protocol/docs Length of output: 98 🏁 Script executed: #!/bin/bash
# Check how comments are handled in the custom components mentioned in learnings
fd -type f -path 'src/theme/*' \( -name '*.tsx' -o -name '*.ts' -o -name '*.jsx' -o -name '*.js' \) | head -20Repository: Super-Protocol/docs Length of output: 233 🏁 Script executed: #!/bin/bash
# List files in src/theme to find custom components
find src/theme -type f -name '*.tsx' -o -name '*.ts' -o -name '*.jsx' -o -name '*.js'Repository: Super-Protocol/docs Length of output: 425 🏁 Script executed: #!/bin/bash
# Check for Biome configuration
find . -maxdepth 2 -name 'biome.json*' -o -name '.biomerc*'Repository: Super-Protocol/docs Length of output: 75 🏁 Script executed: #!/bin/bash
# Search for Highlight, Imager, and Admonition components
rg -l '(Highlight|Imager|Admonition)' src/theme --type js --type ts --type jsx --type tsxRepository: Super-Protocol/docs Length of output: 90 🏁 Script executed: #!/bin/bash
# Check for similar // comment patterns inside JSX in the file
rg -n '^\s*//\s+' src/theme/Layout/index.jsRepository: Super-Protocol/docs Length of output: 98 🏁 Script executed: #!/bin/bash
# Get broader context around line 96 to see full JSX structure
sed -n '85,106p' src/theme/Layout/index.jsRepository: Super-Protocol/docs Length of output: 1007 🏁 Script executed: #!/bin/bash
# Check Highlight.jsx for comment patterns
cat -n src/theme/Highlight.jsxRepository: Super-Protocol/docs Length of output: 500 🏁 Script executed: #!/bin/bash
# Check Imager.jsx for comment patterns
cat -n src/theme/Imager.jsxRepository: Super-Protocol/docs Length of output: 349 🏁 Script executed: #!/bin/bash
# Check biome.json configuration
cat -n biome.jsonRepository: Super-Protocol/docs Length of output: 2348 🏁 Script executed: #!/bin/bash
# Check Admonition layout for comment patterns
cat -n src/theme/Admonition/Layout/index.tsxRepository: Super-Protocol/docs Length of output: 1904 Wrap the JSX comment in braces. A raw 🛠️ Proposed fix- // Stabs and abbreviations
+ {/* Stabs and abbreviations */}📝 Committable suggestion
Suggested change
🧰 Tools🪛 Biome (2.1.2)[error] 96-98: Wrap comments inside children within braces. Unsafe fix: Wrap the comments with braces (lint/suspicious/noCommentText) 🤖 Prompt for AI Agents |
||||||
|
|
||||||
| <Tooltip anchorSelect="#cvm"> | ||||||
| Confidential Virtual Machine | ||||||
| </Tooltip> | ||||||
|
|
||||||
| <Tooltip anchorSelect="#tl"> | ||||||
| Trusted Loader | ||||||
| </Tooltip> | ||||||
| </> | ||||||
| ); | ||||||
| } | ||||||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Fix the CVM anchor id to match the tooltip selector.
Right now the CVM link uses
id="ca", which duplicates the CA anchor and breaks the#cvmtooltip.🔧 Proposed fix
🤖 Prompt for AI Agents