Skip to content

Commit 651ce39

Browse files
committed
fixed linting errors
1 parent 540e967 commit 651ce39

File tree

3 files changed

+1
-6
lines changed

3 files changed

+1
-6
lines changed

.github/workflows/cd.deploy.stg.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,6 @@ on:
44
push:
55
tags:
66
- "stg-v*"
7-
branches:
8-
# @TODO-ZM: Remove this
9-
- project-detail
107
workflow_dispatch:
118

129
jobs:

web/src/_build/pages/index.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,7 @@ export type PageInfoWithLocalKeys = Omit<PageInfo, "lang" | "title" | "descripti
1717
title: AllDictionaryKeys;
1818
description: AllDictionaryKeys;
1919
};
20-
// ts-prune-ignore-next
20+
2121
export { staticPages } from "./static-pages";
22-
export { templatePages } from "./template-pages";
2322

2423
export const allPages = [...staticPages, ...templatePages];

web/src/pages/projects/project/index.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,6 @@ export default function Page(): JSX.Element {
4141
return <Redirect href="/projects" />;
4242
}
4343

44-
// @TODO-ZM: localize
4544
return (
4645
<main className="flex flex-col self-center w-full max-w-7xl">
4746
{project !== "ERROR" && project !== null ? (

0 commit comments

Comments
 (0)