Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
N
Neos
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Locked Files
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Security & Compliance
Security & Compliance
Dependency List
License Compliance
Packages
Packages
List
Container Registry
Analytics
Analytics
CI / CD
Code Review
Insights
Issues
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
love_飞影
Neos
Commits
37634cf7
Commit
37634cf7
authored
Aug 03, 2023
by
timel
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix: move cookies.ts from ui to api
parent
02853d8a
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
4 additions
and
3 deletions
+4
-3
src/api/cookies.ts
src/api/cookies.ts
+0
-0
src/api/index.ts
src/api/index.ts
+1
-0
src/ui/Layout/index.tsx
src/ui/Layout/index.tsx
+1
-1
src/ui/NewMatch/index.tsx
src/ui/NewMatch/index.tsx
+2
-1
src/ui/Shared/index.ts
src/ui/Shared/index.ts
+0
-1
No files found.
src/
ui/Shared
/cookies.ts
→
src/
api
/cookies.ts
View file @
37634cf7
File moved
src/api/index.ts
View file @
37634cf7
export
*
from
"
./cards
"
;
export
*
from
"
./cookies
"
;
export
*
from
"
./deck
"
;
export
*
from
"
./mycard
"
;
export
*
from
"
./ocgcore/idl/ocgcore
"
;
...
...
src/ui/Layout/index.tsx
View file @
37634cf7
...
...
@@ -4,9 +4,9 @@ import { Avatar } from "antd";
import
{
type
LoaderFunction
,
NavLink
,
Outlet
}
from
"
react-router-dom
"
;
import
{
useSnapshot
}
from
"
valtio
"
;
import
{
CookieKeys
,
getCookie
}
from
"
@/api
"
;
import
{
useConfig
}
from
"
@/config
"
;
import
{
accountStore
,
type
User
}
from
"
@/stores
"
;
import
{
CookieKeys
,
getCookie
}
from
"
@/ui/Shared
"
;
import
styles
from
"
./index.module.scss
"
;
...
...
src/ui/NewMatch/index.tsx
View file @
37634cf7
...
...
@@ -2,8 +2,9 @@ import { ConfigProvider, Select, Space } from "antd";
import
classNames
from
"
classnames
"
;
import
{
type
LoaderFunction
}
from
"
react-router-dom
"
;
import
{
CookieKeys
,
setCookie
}
from
"
@/api
"
;
import
{
accountStore
,
type
User
}
from
"
@/stores
"
;
import
{
Background
,
CookieKeys
,
setCookie
}
from
"
@/ui/Shared
"
;
import
{
Background
}
from
"
@/ui/Shared
"
;
import
styles
from
"
./index.module.scss
"
;
...
...
src/ui/Shared/index.ts
View file @
37634cf7
export
*
from
"
./Background
"
;
export
*
from
"
./cookies
"
;
export
*
from
"
./css
"
;
export
*
from
"
./IconFont
"
;
export
*
from
"
./YgoCard
"
;
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment