Skip to content

Commit b0908ba

Browse files
committed
fixed formatting
1 parent de294cc commit b0908ba

8 files changed

Lines changed: 8 additions & 8 deletions

File tree

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ on:
1313

1414
jobs:
1515
steps-lint-typecheck:
16-
name: "Steps: Lint & Typecheck (00-09)"
16+
name: "Lint & Typecheck"
1717
runs-on: ubuntu-latest
1818
strategy:
1919
matrix:

04-database/src/db/seed.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ async function main() {
2525

2626
if (users.length === 0) {
2727
console.error(
28-
"❌ No users found in the database. Seed cannot assign authorId without existing users."
28+
"❌ No users found in the database. Seed cannot assign authorId without existing users.",
2929
);
3030
process.exit(1);
3131
}

05-object-storage/src/db/seed.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ async function main() {
2525

2626
if (users.length === 0) {
2727
console.error(
28-
"❌ No users found in the database. Seed cannot assign authorId without existing users."
28+
"❌ No users found in the database. Seed cannot assign authorId without existing users.",
2929
);
3030
process.exit(1);
3131
}

06-caching/src/db/seed.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ async function main() {
2525

2626
if (users.length === 0) {
2727
console.error(
28-
"❌ No users found in the database. Seed cannot assign authorId without existing users."
28+
"❌ No users found in the database. Seed cannot assign authorId without existing users.",
2929
);
3030
process.exit(1);
3131
}

07-email/src/db/seed.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ async function main() {
2525

2626
if (users.length === 0) {
2727
console.error(
28-
"❌ No users found in the database. Seed cannot assign authorId without existing users."
28+
"❌ No users found in the database. Seed cannot assign authorId without existing users.",
2929
);
3030
process.exit(1);
3131
}

08-ai/src/components/wiki-article-viewer.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ export default function WikiArticleViewer({
4141
}: WikiArticleViewerProps) {
4242
// local state to show updated pageviews after increment
4343
const [localPageviews, setLocalPageviews] = useState<number | null>(
44-
pageviews ?? null
44+
pageviews ?? null,
4545
);
4646

4747
useEffect(() => {

08-ai/src/db/seed.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ async function main() {
2525

2626
if (users.length === 0) {
2727
console.error(
28-
"❌ No users found in the database. Seed cannot assign authorId without existing users."
28+
"❌ No users found in the database. Seed cannot assign authorId without existing users.",
2929
);
3030
process.exit(1);
3131
}

09-with-tests/src/db/seed.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ async function main() {
2525

2626
if (users.length === 0) {
2727
console.error(
28-
"❌ No users found in the database. Seed cannot assign authorId without existing users."
28+
"❌ No users found in the database. Seed cannot assign authorId without existing users.",
2929
);
3030
process.exit(1);
3131
}

0 commit comments

Comments
 (0)