Skip to content

Commit

Permalink
Update app/utils/getUUID.ts
Browse files Browse the repository at this point in the history
Co-authored-by: Gwangseo Go <[email protected]>
  • Loading branch information
crew852 and aube-dev authored Aug 30, 2024
1 parent 62e4927 commit e0c2842
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions app/utils/getUUID.ts
Original file line number Diff line number Diff line change
@@ -1,9 +1,6 @@
import { v4 as uuidv4 } from 'uuid';

//이용자의 uuid를 받아옵니다.
const getUUID = () => {
const getUserUUID = (): string => uuidv4();
return getUserUUID;
};
const getUUID = () => uuidv4();

export default getUUID;

0 comments on commit e0c2842

Please sign in to comment.