Skip to content

Commit

Permalink
Add suggestions from the code review
Browse files Browse the repository at this point in the history
  • Loading branch information
obulat committed Oct 31, 2024
1 parent 767b920 commit ef4cdcd
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
3 changes: 1 addition & 2 deletions automations/js/src/project_thread_updates.js
Original file line number Diff line number Diff line change
Expand Up @@ -61,8 +61,7 @@ const GET_PROJECT_CARDS = `
*/
module.exports = async ({ github, core }) => {
try {
// eslint-disable-next-line no-constant-binary-expression
const isDryRun = process.env.DRY_RUN === "true" ?? false
const isDryRun = process.env.DRY_RUN === "true"

const currentDate = new Date()
// Create a date by subtracting DAYS_UPDATED_WITHIN days
Expand Down
3 changes: 2 additions & 1 deletion frontend/tailwind.config.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
import tailwindcssTypography from "@tailwindcss/typography"
import defaultTheme from "tailwindcss/defaultTheme"
import plugin from "tailwindcss/plugin"

Expand Down Expand Up @@ -343,7 +344,7 @@ export default {
},
},
plugins: [
require("@tailwindcss/typography"), // eslint-disable-line @typescript-eslint/no-require-imports
tailwindcssTypography,
// Focus styles
// This plugin has related stylesheets in `src/styles/tailwind.css`.
plugin(({ matchUtilities, theme }) => {
Expand Down

0 comments on commit ef4cdcd

Please sign in to comment.