Skip to content

Commit

Permalink
Make a random change
Browse files Browse the repository at this point in the history
  • Loading branch information
SnekNOTSnake committed Dec 1, 2022
1 parent 068f6bc commit 6551f9d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "my-personal-list",
"description": "My personal anime tracking list",
"version": "1.4.0",
"version": "1.4.1",
"scripts": {
"start": "concurrently \"yarn start:renderer\" \"yarn start:main\" --kill-others",
"start:main": "tsc && electron .",
Expand Down
2 changes: 1 addition & 1 deletion packages/common/preload.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ contextBridge.exposeInMainWorld('myAPI', {
changeSchedule: (schedule: Partial<Schedule>) =>
ipc.invoke(IPCKey.ChangeSchedule, schedule),

// Settings subscription
// Menu-renderer communications
onUpdateSettings: (listener: (newSettings: MyStore) => void) => {
ipc.on(IPCKey.ChangeTheme, async (e, theme) => {
const settings = await ipc.invoke(IPCKey.ChangeTheme, theme)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ const AnimeBatchEdit: React.FC<Props> = ({ selectedAnime }) => {
return (
<div className={styles.root}>
<div className={styles.center}>
<h1>Selected {selectedAnime.length} series</h1>
<h1>Selected {selectedAnime.length} Series</h1>

<table>
<tbody>
Expand Down

0 comments on commit 6551f9d

Please sign in to comment.