{"version":3,"file":"Note-525ea210.js","sources":["../../src/components/Note/NoteAuthorInfo.tsx","../../src/components/Note/NoteRepostHeader.tsx","../../src/components/Note/NoteReplyToHeader.tsx","../../src/components/Note/NoteHeader/NoteHeader.tsx","../../src/components/Note/NoteTopZaps.tsx","../../src/components/Note/NoteTopZapsCompact.tsx","../../src/components/Note/Note.tsx"],"sourcesContent":["import { Component, Show } from 'solid-js';\r\nimport { PrimalUser } from '../../types/primal';\r\n\r\nimport styles from './Note.module.scss';\r\nimport { useThreadContext } from '../../contexts/ThreadContext';\r\nimport { useIntl } from '@cookbook/solid-intl';\r\nimport { authorName, nip05Verification } from '../../stores/profile';\r\nimport { hookForDev } from '../../lib/devTools';\r\nimport { date } from '../../lib/dates';\r\nimport VerificationCheck from '../VerificationCheck/VerificationCheck';\r\n\r\nconst NoteAuthorInfo: Component<{\r\n author: PrimalUser,\r\n time: number,\r\n id?: string,\r\n}> = (props) => {\r\n\r\n const threadContext = useThreadContext();\r\n const intl = useIntl();\r\n\r\n return (\r\n
\r\n } />\r\n\r\n