Skip to content

Commit

Permalink
Fix console errors
Browse files Browse the repository at this point in the history
  • Loading branch information
matt765 committed Jun 22, 2024
1 parent ab17fa6 commit 5e24bcd
Show file tree
Hide file tree
Showing 22 changed files with 899 additions and 683 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,11 @@
- add first tag & Github release
- update package.json & readme
- add contributing guidelines

## 1.0.1 (22-06-2024)

- update all packages
- rewrite styles from Mantine to SCSS Modules
- migrate to app router
- fix console bugs
- improve responsive styles
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Front-End Questions
Open source base of front-end related interview questions.
Open source application that contains base of front-end related interview questions.

## Tech stack
React, NextJS, TypeScript, SCSS Modules, Zustand, React-PDF
Expand Down
1,064 changes: 403 additions & 661 deletions license

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion next.config.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/** @type {import('next').NextConfig} */
const nextConfig = {
reactStrictMode: true,
reactStrictMode: false,
}

module.exports = nextConfig
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
{
"name": "front-end-questions",
"version": "1.0.0",
"version": "1.0.1",
"private": true,
"license": "AGPL-3.0-only",
"description": "Open source base of front-end related interview questions.",
"license": "CC-BY-NC-ND-4.0",
"description": "Open source application that contains base of front-end related interview questions.",
"author": {
"name": "matt765",
"email": "mateusz.wyrebek@gmail.com",
Expand Down
195 changes: 195 additions & 0 deletions public/loader.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 0 additions & 2 deletions src/app/javascript/page.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
import dynamic from "next/dynamic";

import { javascriptQuestionsData } from "@/questionsData/javascriptQuestions";
import { QuestionList } from "@/components/questions/QuestionList";

Expand Down
4 changes: 2 additions & 2 deletions src/app/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ export default function RootLayout({
children: React.ReactNode;
}) {
return (
<html lang="en">
<body className={`${firaSans.className}`}>
<html lang="en" suppressHydrationWarning>
<body className={`${firaSans.className}`} suppressHydrationWarning>
<Providers>{children}</Providers>
</body>
</html>
Expand Down
Loading

0 comments on commit 5e24bcd

Please sign in to comment.