Skip to content

Commit

Permalink
fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
bunsenstraat committed Dec 6, 2023
1 parent 7eb84b0 commit c1a103d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
4 changes: 2 additions & 2 deletions apps/remix-ide/src/app/files/dgitProvider.ts
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ class DGitProvider extends Plugin {
this.ipfsSources = [this.remixIPFS, this.globalIPFSConfig, this.ipfsconfig]
}

async getGitConfig() {
async getGitConfig(dir = '') {

if ((Registry.getInstance().get('platform').api.isDesktop())) {
return {
Expand Down Expand Up @@ -458,7 +458,7 @@ class DGitProvider extends Plugin {
const gitmodules = await this.call('fileManager', 'readFile', path.join(dir, '.gitmodules'))
if (gitmodules) {
const lines = gitmodules.split('\n')
let currentModule = {}
let currentModule:any = {}
let modules = []
for (let line of lines) {
line = line.trim()
Expand Down
3 changes: 2 additions & 1 deletion libs/remix-ui/app/src/lib/remix-app/context/context.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@ import {ModalInitialState} from '../state/modals'

export type appProviderContextType = {
settings: any,
showMatamo: boolean
showMatamo: boolean,
showEnter: boolean,
appManager: any
modal: any
layout: any
Expand Down

0 comments on commit c1a103d

Please sign in to comment.