Skip to content

Commit

Permalink
🤖 style: prettify code
Browse files Browse the repository at this point in the history
  • Loading branch information
sophiamersmann authored and github-actions[bot] committed Oct 30, 2023
1 parent 615f0c0 commit 264ba0e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
3 changes: 1 addition & 2 deletions datapage/Datapage.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,7 @@ export const getDatapageDataV2 = async (
partialGrapherConfig: GrapherInterface
): Promise<DataPageDataV2> => {
{
const processingLevel =
variableMetadata.processingLevel ?? "minor"
const processingLevel = variableMetadata.processingLevel ?? "minor"
const lastUpdated = getLastUpdatedFromVariable(variableMetadata) ?? ""
const nextUpdate = getNextUpdateFromVariable(variableMetadata)
const datapageJson: DataPageDataV2 = {
Expand Down
2 changes: 1 addition & 1 deletion packages/@ourworldindata/utils/src/OwidVariable.ts
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ export interface OwidVariablePresentation {
faqs?: FaqLink[]
}

export type OwidProcessingLevel = 'minor' | 'major'
export type OwidProcessingLevel = "minor" | "major"

export interface FaqLink {
gdocId: string
Expand Down

0 comments on commit 264ba0e

Please sign in to comment.