Skip to content

Commit 61ee6fb

Browse files
committed
drop octify prefix from exported pdf filename
1 parent 44987e5 commit 61ee6fb

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/components/Viewer.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ export function Viewer({ slug, title, client, slides }: Props) {
8080

8181
const pdfFilename = useMemo(() => {
8282
const safe = title.replace(/[\\/:*?"<>|]+/g, '').trim();
83-
return `Octify – ${safe}.pdf`;
83+
return `${safe}.pdf`;
8484
}, [title]);
8585

8686
const downloadPdf = useCallback(async () => {

0 commit comments

Comments
 (0)