mirror of
https://github.com/penpot/penpot.git
synced 2025-12-11 22:14:05 +01:00
9 lines
169 B
JavaScript
9 lines
169 B
JavaScript
import { interceptRPC } from "./index";
|
|
|
|
|
|
export const setupNotLogedIn = async (page) => {
|
|
await interceptRPC(page, "get-profile", "get-profile-anonymous.json");
|
|
|
|
};
|
|
|