Skip to content

Commit

Permalink
- fix: minor assets fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
agallardol committed Sep 5, 2023
1 parent d4b4690 commit 7585e54
Show file tree
Hide file tree
Showing 8 changed files with 23 additions and 99 deletions.
5 changes: 5 additions & 0 deletions .vscode/config.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"files.exclude": {
"**/dist": true
}
}
2 changes: 1 addition & 1 deletion visor-extension/src/components/setup/Welcome.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import * as React from 'react';
import logo from '../../icons/shinkai.svg';
import logo from '../../icons/shinkai-min.svg';
import { useHistory } from 'react-router';
import { motion } from 'framer-motion';
import './setup.css';
Expand Down
2 changes: 1 addition & 1 deletion visor-extension/src/components/ui/NavBar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import React, { useState, useRef } from 'react';
import { useOnClickOutside } from '../../hooks/hooks';
import './navbar.css';
import Sigil from './svg/Sigil';
import visorLogo from '../../icons/visor.png';
import visorLogo from '../../icons/visor.svg';
import RocketIcon from '../../icons/rocket';
import SettingsIcon from '../../icons/settings';
import MenuIcon from '../../icons/menu-icon.svg';
Expand Down
3 changes: 3 additions & 0 deletions visor-extension/src/icons/shinkai-min.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 0 additions & 4 deletions visor-extension/src/icons/urbit.svg

This file was deleted.

47 changes: 3 additions & 44 deletions visor-extension/src/icons/visor.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
47 changes: 3 additions & 44 deletions visor-extension/src/icons/visorWhiteText.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
12 changes: 7 additions & 5 deletions visor-extension/src/popup.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,10 @@ import { MemoryRouter as Router } from 'react-router-dom';
import App from './App';

const root = createRoot(document.getElementById('popup'));
root.render( <React.StrictMode>
<Router>
<App />
</Router>
</React.StrictMode>);
root.render(
<React.StrictMode>
<Router>
<App />
</Router>
</React.StrictMode>
);

0 comments on commit 7585e54

Please sign in to comment.