Skip to content

Commit

Permalink
fix: remove compile-time warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
hfdem committed Sep 19, 2024
1 parent a29407b commit 5170fd7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion client/src/pages/messaging/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import LinkSharingInstruction from '../../components/Messaging/LinkSharingInstru
import Notification from '../../components/Notification';
import notificationAudio from '../../components/Notification/audio.mp3';
import { ThemeContext } from '../../ThemeContext';
import { LS, SS } from '../../utils/storage';
import { SS } from '../../utils/storage';
import {
getKeyPairFromCache, getUserSessionID, isEmptyMessage, storeKeyPair, storeUserSessionID
} from './helpers';
Expand Down
2 changes: 1 addition & 1 deletion service/src/getChatLink.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import makeRequest from './makeRequest';

const getChatLink = async (pin) => {
const getChatLink = async (pin: string) => {
return makeRequest(`chat-link/${pin}`, {
method: 'GET'
});
Expand Down

0 comments on commit 5170fd7

Please sign in to comment.