Shun Miyazawa 4 yıl önce
ebeveyn
işleme
d45580cfe3

+ 2 - 1
packages/app/src/models/serializers/in-app-notification-snapshot/page.ts

@@ -1,11 +1,12 @@
 import { IUser } from '~/interfaces/user';
 import { IUser } from '~/interfaces/user';
+import { IPage } from '~/interfaces/page';
 
 
 export interface IPageSnapshot {
 export interface IPageSnapshot {
   path: string
   path: string
   creator: IUser
   creator: IUser
 }
 }
 
 
-export const stringifySnapshot = (page: IPageSnapshot): string => {
+export const stringifySnapshot = (page: IPage): string => {
   return JSON.stringify({
   return JSON.stringify({
     path: page.path,
     path: page.path,
     creator: page.creator,
     creator: page.creator,