Skip to content

Commit

Permalink
v0.6.0 (#23)
Browse files Browse the repository at this point in the history
  • Loading branch information
ZRunner authored Dec 24, 2024
2 parents 7d71638 + 988689b commit feeefa5
Show file tree
Hide file tree
Showing 30 changed files with 1,011 additions and 124 deletions.
12 changes: 11 additions & 1 deletion .eslintrc
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,17 @@
"no-empty-function": "off",
"no-lonely-if": "warn",
"no-return-assign": "error",
"no-shadow": "error",
"no-shadow": "off",
"@typescript-eslint/no-shadow": [
"error",
{
"allow": [
"err",
"resolve",
"reject"
]
}
],
"no-unneeded-ternary": "warn",
"no-useless-return": "error",
"no-var": "error",
Expand Down
146 changes: 75 additions & 71 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "axobot-web",
"version": "0.5.0",
"version": "0.6.0",
"type": "module",
"private": true,
"dependencies": {
Expand All @@ -13,7 +13,7 @@
"@vitejs/plugin-react-swc": "^3.6.0",
"compression": "^1.7.4",
"discord-api-types": "^0.37.92",
"express": "^4.21.1",
"express": "^4.21.2",
"express-rate-limit": "^7.4.0",
"morgan": "^1.10.0",
"mui-color-input": "^4.0.0",
Expand Down
3 changes: 3 additions & 0 deletions public/assets/checkmark.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ interface ReadonlyChannelPickerProps {
onClick: () => void;
}

function ReadonlyChannelPicker({ currentChannel, onClick }: ReadonlyChannelPickerProps) {
export function ReadonlyChannelPicker({ currentChannel, onClick }: ReadonlyChannelPickerProps) {
return (
<Button
onClick={onClick}
Expand Down
Loading

0 comments on commit feeefa5

Please sign in to comment.