Skip to content

Commit

Permalink
fixed wrong assets path for thumbnail and logo
Browse files Browse the repository at this point in the history
  • Loading branch information
dkrohmer committed Jul 4, 2024
1 parent da7a6b2 commit 763f235
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 4 deletions.
2 changes: 0 additions & 2 deletions src/renderer/applets/model-editor/setup.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,6 @@ const create = (
'edge-source-handle' ||
'edge-target-handle'
) {
console.log('FALSE');
keepItemInHistory = false;
}
}
Expand All @@ -137,7 +136,6 @@ const create = (
'edge-source-handle' ||
'edge-target-handle'
) {
console.log('FALSE');
keepItemInHistory = false;
}
}
Expand Down
2 changes: 1 addition & 1 deletion src/renderer/components/TopBar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import { useDispatch, useSelector } from 'react-redux';
import { RootState, AppDispatch } from '../store';
import { setSidebarVisible } from '../store/SettingsStore';

import logo from '../../../../../../../assets/logo.svg';
import logo from '../../../assets/logo.svg'

const TopBar: React.FC = () => {
const dispatch = useDispatch<AppDispatch>();
Expand Down
2 changes: 1 addition & 1 deletion src/renderer/components/models/Model.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ import {
setModelsIsCloning,
} from '../../store/ModelsStore';

import thumbnail from '../../../../../../../../assets/thumbnail.png';
import thumbnail from '../../../../assets/thumbnail.png'

import { fetchLatestVersion } from '../../store/VersionsStore';

Expand Down

0 comments on commit 763f235

Please sign in to comment.