diff --git a/components/common.js b/components/common.js index f4b34eed6..92951a22f 100644 --- a/components/common.js +++ b/components/common.js @@ -29,7 +29,7 @@ export function Table({ headers = [], rowRenderer = () => [], data = [] }) { export function TableHead({ headers = [] }) { const header = `| ${headers.join(' | ')} |`; - const breaks = `|${Array(headers.length).fill('-|').join('')}`; + const breaks = `|${Array(headers.length).fill('---|').join('')}`; return ( <>