Skip to content
This repository has been archived by the owner on May 15, 2022. It is now read-only.

Commit

Permalink
Rename "wilmol" -> "will-molloy" (#179)
Browse files Browse the repository at this point in the history
  • Loading branch information
will-molloy authored Apr 1, 2022
1 parent 77ed7fc commit 55ea89d
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ updates:
schedule:
interval: "monthly"
reviewers:
- "wilmol"
- "will-molloy"
labels:
- "dependencies"

Expand All @@ -15,6 +15,6 @@ updates:
schedule:
interval: "monthly"
reviewers:
- "wilmol"
- "will-molloy"
labels:
- "dependencies"
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
# sudoku-solver-react.js

[![build](https://github.com/wilmol/sudoku-solver-react.js/workflows/build/badge.svg?event=push)](https://github.com/wilmol/sudoku-solver-react.js/actions?query=workflow%3Abuild)
[![codecov](https://codecov.io/gh/wilmol/sudoku-solver-react.js/branch/master/graph/badge.svg)](https://codecov.io/gh/wilmol/sudoku-solver-react.js)
[![build](https://github.com/will-molloy/sudoku-solver-react.js/workflows/build/badge.svg?event=push)](https://github.com/will-molloy/sudoku-solver-react.js/actions?query=workflow%3Abuild)
[![codecov](https://codecov.io/gh/will-molloy/sudoku-solver-react.js/branch/master/graph/badge.svg)](https://codecov.io/gh/will-molloy/sudoku-solver-react.js)

sudoku solver built with react.js

## Usage
**Site is available here: https://wilmol.github.io/sudoku-solver-react.js/**
**Site is available here: https://will-molloy.github.io/sudoku-solver-react.js/**

#### Install dependencies and start
```
Expand All @@ -24,4 +24,4 @@ npm run stylelint -- --fix
```
npm run deploy
```
The site will be available at: https://wilmol.github.io/sudoku-solver-react.js/
The site will be available at: https://will-molloy.github.io/sudoku-solver-react.js/
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
"name": "sudoku-solver-react.js",
"version": "0.1.0",
"private": true,
"homepage": "https://wilmol.github.io/sudoku-solver-react.js/",
"repository": "github:wilmol/sudoku-solver-react.js",
"homepage": "https://will-molloy.github.io/sudoku-solver-react.js/",
"repository": "github:will-molloy/sudoku-solver-react.js",
"license": "GPL-2.0",
"scripts": {
"build": "react-scripts build",
Expand Down
2 changes: 1 addition & 1 deletion src/components/Cell.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ const Cell: React.FC<CellProps> = ({

console.log(`board[${row}][${col}] = ${intVal}`);
// without copying the renders are delayed
// TODO(wilmol) why is this?
// TODO(will-molloy) why is this?
const boardCopy = [...board];
boardCopy[row][col].value = intVal;
boardCopy[row][col].initiallySet = intVal > 0;
Expand Down

0 comments on commit 55ea89d

Please sign in to comment.