Skip to content

Conversation

@anthonydmays
Copy link
Contributor

Signed-off-by: Anthony D. Mays anthony@morganlatimer.com

Signed-off-by: Anthony D. Mays <anthony@morganlatimer.com>
Copilot AI review requested due to automatic review settings October 6, 2025 18:22
@anthonydmays anthonydmays merged commit 2d3f0a2 into main Oct 6, 2025
@anthonydmays anthonydmays deleted the feat/lesson_23 branch October 6, 2025 18:22
Copy link
Contributor

Copilot AI left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pull Request Overview

This PR adds lesson 24 homework assignment and lesson 25 pre-work materials, introducing a full-stack React application with API integration and database preparation content.

  • Adds complete lesson 24 homework with React template, API server, and shared types package
  • Creates lesson 25 pre-work documentation with SQL learning resources
  • Provides scaffolding for a full-stack web application using React, Express, and TypeScript

Reviewed Changes

Copilot reviewed 49 out of 57 changed files in this pull request and generated 3 comments.

Show a summary per file
File Description
lesson_25/README.md Pre-work documentation with SQL learning resources
lesson_24/README.md Updated homework assignment with API integration tasks
lesson_24/types/* Shared TypeScript types package for Program interface
lesson_24/template/* Complete React application template with components and styling
lesson_24/api/* Express API server with CRUD operations and JSON file database
Files not reviewed (1)
  • lesson_24/types/package-lock.json: Language not supported

Tip: Customize your code reviews with copilot-instructions.md. Create the file or learn how to get started.

Comment on lines +1 to +11
.program {
display: flex;
flex-direction: column;
max-width: 48%;
}

@media screen and (max-width: 1080px) {
.program {
min-width: 100%;
}
} No newline at end of file
Copy link

Copilot AI Oct 6, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This CSS file appears to be duplicated with the same content as Program.scss. The styles should be consolidated into a single location to avoid code duplication.

Suggested change
.program {
display: flex;
flex-direction: column;
max-width: 48%;
}
@media screen and (max-width: 1080px) {
.program {
min-width: 100%;
}
}
@import '../Program/Program.scss';

Copilot uses AI. Check for mistakes.
@@ -0,0 +1,30 @@
import App from './App.tsx';
import {Home} from './pages/Home/Home.tsx';
Copy link

Copilot AI Oct 6, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The import should use the index.ts barrel export from './pages/Home' instead of directly importing from 'Home.tsx' to maintain consistency with the established pattern.

Suggested change
import {Home} from './pages/Home/Home.tsx';
import {Home} from './pages/Home';

Copilot uses AI. Check for mistakes.
Comment on lines +23 to +29
"nodemon": "^3.1.7",
"prettier": "^3.4.1",
"supertest": "^7.0.0",
"ts-jest": "^29.2.5",
"@types/node": "^22.10.2",
"nodemon": "^3.1.9",
"prettier": "3.4.2",
Copy link

Copilot AI Oct 6, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Duplicate dependencies detected: 'nodemon' appears on lines 23 and 28, and 'prettier' appears on lines 24 and 29 with different versions. These duplicates should be removed.

Suggested change
"nodemon": "^3.1.7",
"prettier": "^3.4.1",
"supertest": "^7.0.0",
"ts-jest": "^29.2.5",
"@types/node": "^22.10.2",
"nodemon": "^3.1.9",
"prettier": "3.4.2",
"nodemon": "^3.1.9",
"prettier": "3.4.2",
"supertest": "^7.0.0",
"ts-jest": "^29.2.5",
"@types/node": "^22.10.2",

Copilot uses AI. Check for mistakes.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants