--- import { sha256 } from 'js-sha256'; export interface Props { board: string; tid?: string } const { board, tid } = Astro.props; const iphash = sha256(Astro.clientAddress); ---