You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
awaitsql`insert into user_hakatime_daily_summary (user_id, date, summary) values (${userInfo.user.id}, ${date}, ${summaryResJson}) on conflict (user_id, date) do update set summary = excluded.summary;`;
109
+
awaitsql`insert into user_hakatime_daily_summary (user_id, date, summary) values (${slackId}, ${date}, ${summaryResJson}) on conflict (user_id, date) do update set summary = excluded.summary;`;
Copy file name to clipboardExpand all lines: src/ui.ts
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -76,7 +76,7 @@ export async function buildSockView(
76
76
const[extendedUserRow]=
77
77
awaitsql`select users.*, clans.name as clan_name, clans.join_code from users left join clans on users.clan_id = clans.id where users.slack_id = ${slackId}`;
0 commit comments