Skip to content

Commit

Permalink
fix: mark social types as optional
Browse files Browse the repository at this point in the history
  • Loading branch information
danielroe committed Nov 9, 2024
1 parent 8f63e92 commit a06e462
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions app/types/modules.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@ export interface Stats {
export interface ModuleUser {
name: string
github: string
twitter: string
twitter?: string
bluesky?: string
}

export interface Module {
Expand All @@ -36,7 +37,8 @@ export interface Module {
maintainers: {
name: string
github: string
twitter: string
twitter?: string
bluesky?: string
}[]
contributors: {
id: number
Expand Down

0 comments on commit a06e462

Please sign in to comment.