Skip to content

Commit

Permalink
fix: update types
Browse files Browse the repository at this point in the history
  • Loading branch information
stefanprobst committed Feb 6, 2024
1 parent a4a22b5 commit b72c00e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion utils/create-date-span.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
export function createDateSpan(date: { earliest?: string; latest?: string }) {
export function createDateSpan(date: { earliest?: string | null; latest?: string | null }) {
const { d } = useI18n();

const segments: Array<string> = [];
Expand Down

0 comments on commit b72c00e

Please sign in to comment.