Skip to content

Commit

Permalink
Merge pull request #180 from sogrim/fix-ug-data-upload-white-screen-bug
Browse files Browse the repository at this point in the history
Fix ug data upload white screen bug
  • Loading branch information
benny-n authored Jan 16, 2023
2 parents 3cb1331 + 14c9e30 commit ac50bc3
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 5 deletions.
2 changes: 1 addition & 1 deletion packages/server/Cargo.lock

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

2 changes: 1 addition & 1 deletion packages/server/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "sogrim-server"
version = "1.2.0"
version = "1.2.1"
edition = "2021"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
Expand Down
2 changes: 1 addition & 1 deletion packages/sogrim-app/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "sogrim-app",
"version": "1.2.0",
"version": "1.2.1",
"private": true,
"dependencies": {
"@emotion/react": "^11.10.5",
Expand Down
6 changes: 6 additions & 0 deletions packages/sogrim-app/src/components/Footer/changes.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,12 @@ export type VersionChanges = {
};

export const versionChanges: VersionChanges[] = [
{
version: "v1.2.1",
changes: [
"תוקן באג שגרם למסך לבן לאחר העתקה של גיליון ציונים בפורמט לא תקין",
],
},
{
version: "v1.2.0",
changes: [
Expand Down
2 changes: 0 additions & 2 deletions packages/sogrim-app/src/hooks/apiHooks/useUpdateUgData.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,6 @@ export default function useUpdateUserUgData(authToken: any) {
return current;
});
},
onError: (error) => console.error(error),
useErrorBoundary: true,
}
);
}

0 comments on commit ac50bc3

Please sign in to comment.