Skip to content

Commit

Permalink
Fix 🚀
Browse files Browse the repository at this point in the history
  • Loading branch information
chicio committed Jan 12, 2024
1 parent 6ad3851 commit fd9436b
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 113 deletions.
111 changes: 0 additions & 111 deletions src/components/design-system/molecules/recent-post-card.tsx

This file was deleted.

2 changes: 1 addition & 1 deletion src/components/design-system/organism/read-next.tsx
Expand Up @@ -31,7 +31,7 @@ export interface RecentPostsProps {
export const RecentPosts: FC<RecentPostsProps> = ({ currentSlug }) => {
const data = useStaticQuery<Queries.RecentPostsQuery>(graphql`
query RecentPosts {
allMarkdownRemark(limit: 15, sort: { frontmatter: { date: DESC } }) {
allMarkdownRemark(limit: 3, sort: { frontmatter: { date: DESC } }) {
edges {
node {
fields {
Expand Down
Expand Up @@ -349,7 +349,7 @@ type TicTacToe<CurrentTicTacToeGame extends TicTacToeGame, NextMove extends TicT
: CurrentTicTacToeGame;
```

Below, you can find the full solution and the test cases we saw before to verify its correctness down below.
Below, you can find the full solution and the test cases we saw before to verify its correctness.

```typescript
// domain
Expand Down

0 comments on commit fd9436b

Please sign in to comment.