Skip to content

Commit

Permalink
remove console log
Browse files Browse the repository at this point in the history
  • Loading branch information
pacholoamit committed May 15, 2023
1 parent 488a082 commit 0069043
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions src/providers/user.provider.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -53,13 +53,11 @@ const UserProvider: React.FC<UserProviderProps> = ({ children }) => {

if (!sysInfo?.osVersion) return;

const response = await updateAppUser(id, {
await updateAppUser(id, {
last_active: new Date(),
operating_system: sysInfo?.osVersion,
version,
});

console.log(response);
}, [sysInfo?.osVersion]);

const createAndSetUserId = async (values: CreateAppUserInput, opt_in = true) => {
Expand Down

0 comments on commit 0069043

Please sign in to comment.