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